Improve assembler

This commit is contained in:
2025-08-03 12:54:08 +02:00
parent 6d98b4eee5
commit 0f80f95de5
9 changed files with 692 additions and 134 deletions
+2
View File
@@ -17,6 +17,7 @@ typedef enum {
NODE_FOR,
NODE_WHILE,
NODE_SELECT,
NODE_NESTED,
NODE_OPER_POS,
NODE_OPER_NEG,
NODE_OPER_ASS,
@@ -43,6 +44,7 @@ typedef struct Node Node;
struct Node {
NodeType type;
Node *next;
String text;
Node *key;