Implemented CALL(_STACK) and RET on the assembler

This commit is contained in:
2023-11-02 23:29:23 +00:00
parent bd39c2b283
commit 6c4469958e
3 changed files with 38 additions and 1 deletions

View File

@@ -51,6 +51,9 @@ typedef enum TokenType
TOKEN_JUMP_ABS,
TOKEN_JUMP_STACK,
TOKEN_JUMP_IF,
TOKEN_CALL,
TOKEN_CALL_STACK,
TOKEN_RET,
TOKEN_SYMBOL,
} token_type_t;