aboutsummaryrefslogtreecommitdiff
path: root/src/inc/lexer.h
diff options
context:
space:
mode:
authorMarvin Borner2021-04-20 16:09:00 +0200
committerMarvin Borner2021-04-20 16:09:00 +0200
commitfbf9cfee0d22a2750b894c2ddb19dff2a50810b4 (patch)
tree035f30ad32e4302c32b8c6a6641f017747e36f0b /src/inc/lexer.h
parent2415600bb755885154072f28a86d784b32567920 (diff)
All right
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 {