Implemented lexer and parser for new memory management instructions

This commit is contained in:
2023-11-01 21:39:48 +00:00
parent 32c1bcb859
commit 7564938113
3 changed files with 45 additions and 1 deletions

View File

@@ -26,6 +26,10 @@ typedef enum TokenType
TOKEN_PUSH_REG,
TOKEN_MOV,
TOKEN_DUP,
TOKEN_MALLOC,
TOKEN_MSET,
TOKEN_MGET,
TOKEN_MDELETE,
TOKEN_NOT,
TOKEN_OR,
TOKEN_AND,