diff options
author | Marvin Borner | 2021-04-20 16:09:00 +0200 |
---|---|---|
committer | Marvin Borner | 2021-04-20 16:09:00 +0200 |
commit | fbf9cfee0d22a2750b894c2ddb19dff2a50810b4 (patch) | |
tree | 035f30ad32e4302c32b8c6a6641f017747e36f0b /src/inc/lexer.h | |
parent | 2415600bb755885154072f28a86d784b32567920 (diff) |
All right
Diffstat (limited to 'src/inc/lexer.h')
-rw-r--r-- | src/inc/lexer.h | 25 |
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 { |