More progress on the assembler

This commit is contained in:
2025-08-03 01:03:39 +02:00
parent 51ea776e55
commit f0be8a1bd5
7 changed files with 140 additions and 31 deletions
+2 -1
View File
@@ -41,8 +41,9 @@ typedef struct {
typedef struct {
Program program;
int errlen;
} AssembleResult;
AssembleResult assemble(Node *root);
AssembleResult assemble(Node *root, char *errbuf, int errmax);
#endif // WL_ASSEMBLE_INCLUDED