diff options
author | Marvin Borner | 2021-04-20 17:42:10 +0200 |
---|---|---|
committer | Marvin Borner | 2021-04-20 17:43:30 +0200 |
commit | 5e257cbf702e57fd55f8477a63236bdb9ce454f4 (patch) | |
tree | 09567e1f12f8e617ebd3cfa17e0b773c026c57af /src/inc/lexer.h | |
parent | fbf9cfee0d22a2750b894c2ddb19dff2a50810b4 (diff) |
Awesome stuff
Diffstat (limited to 'src/inc/lexer.h')
-rw-r--r-- | src/inc/lexer.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/inc/lexer.h b/src/inc/lexer.h index afc3a0a..c3999e7 100644 --- a/src/inc/lexer.h +++ b/src/inc/lexer.h @@ -58,6 +58,8 @@ enum token_type { ORG, DB, DW, + DATA, + BIT, INCLUDE, HASH, @@ -73,7 +75,12 @@ enum token_type { HEX_NUM, BIN_NUM, + STRING, + + // Registers ACCU, + ATR0, + ATR1, R0, R1, R2, @@ -88,7 +95,6 @@ struct token { enum token_type type; char *start; u32 length; - void *data; }; void token_print(struct token *tok); |