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 | |
parent | 2415600bb755885154072f28a86d784b32567920 (diff) |
All right
Diffstat (limited to 'src/inc')
-rw-r--r-- | src/inc/lexer.h | 25 | ||||
-rw-r--r-- | src/inc/warnings.h | 7 |
2 files changed, 31 insertions, 1 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 { diff --git a/src/inc/warnings.h b/src/inc/warnings.h index 495b2e2..f8c06bb 100644 --- a/src/inc/warnings.h +++ b/src/inc/warnings.h @@ -3,8 +3,13 @@ #include <def.h> +struct context { + u32 line; + u32 column; +}; + void warnings_print(void); -void warnings_add(u32 line, const char *fmt, ...); +void warnings_add(struct context *ctx, const char *fmt, ...); void warnings_clear(void); u8 warnings_exist(void); |