Implemented MALLOC_STACK and SUB in the assembler

This commit is contained in:
2023-11-01 22:56:40 +00:00
parent ac3270777b
commit 740627b12d
3 changed files with 23 additions and 1 deletions

View File

@@ -27,6 +27,7 @@ typedef enum TokenType
TOKEN_MOV,
TOKEN_DUP,
TOKEN_MALLOC,
TOKEN_MALLOC_STACK,
TOKEN_MSET,
TOKEN_MSET_STACK,
TOKEN_MGET,
@@ -43,6 +44,7 @@ typedef enum TokenType
TOKEN_GT,
TOKEN_GTE,
TOKEN_PLUS,
TOKEN_SUB,
TOKEN_MULT,
TOKEN_PRINT,
TOKEN_JUMP,