aboutsummaryrefslogtreecommitdiff
path: root/src/inc/lexer.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/inc/lexer.h')
-rw-r--r--src/inc/lexer.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/inc/lexer.h b/src/inc/lexer.h
index 82d533c..afc3a0a 100644
--- a/src/inc/lexer.h
+++ b/src/inc/lexer.h
@@ -6,6 +6,8 @@
enum token_type {
UNKNOWN,
NEWLINE,
+ SPACE,
+
NOP,
JBC,
JB,
@@ -57,6 +59,29 @@ enum token_type {
DB,
DW,
INCLUDE,
+
+ HASH,
+ DOLLAR,
+ SLASH,
+ PLUS,
+ COMMA,
+ DOT,
+ COLON,
+ SEMICOLON,
+
+ DEC_NUM,
+ HEX_NUM,
+ BIN_NUM,
+
+ ACCU,
+ R0,
+ R1,
+ R2,
+ R3,
+ R4,
+ R5,
+ R6,
+ R7,
};
struct token {