Expanded the tokenizer to recognize some opcodes and registers.

This commit is contained in:
2022-01-24 17:09:02 +00:00
parent 2570c5cac0
commit f88613a160
4 changed files with 68 additions and 0 deletions
+2
View File
@@ -21,6 +21,8 @@ typedef enum {
TK_Text,
TK_Number,
TK_Hex,
TK_Opcode,
TK_Register,
TK_Invalid
} TokenType;