aboutsummaryrefslogtreecommitdiff
path: root/src/inc/lexer.h
diff options
context:
space:
mode:
authorMarvin Borner2021-04-20 00:54:43 +0200
committerMarvin Borner2021-04-20 00:54:43 +0200
commitaac2dae5cfcd360ad48f265910511c98decbf9e7 (patch)
tree45b7d421d2ff3d3db390f0c7fd969e4d8a58cd65 /src/inc/lexer.h
parent3ecfdb1064f7c4f45f53c415a77803ce2153d04d (diff)
Beautiful blub blabs
Diffstat (limited to 'src/inc/lexer.h')
-rw-r--r--src/inc/lexer.h20
1 files changed, 14 insertions, 6 deletions
diff --git a/src/inc/lexer.h b/src/inc/lexer.h
index 833e522..82d533c 100644
--- a/src/inc/lexer.h
+++ b/src/inc/lexer.h
@@ -1,7 +1,9 @@
#ifndef LEXER_H
#define LEXER_H
-enum token {
+#include <def.h>
+
+enum token_type {
UNKNOWN,
NEWLINE,
NOP,
@@ -44,7 +46,7 @@ enum token {
DUBB,
MUL,
CJNE,
- SWP,
+ SWAP,
DA,
CRL,
XCH,
@@ -55,10 +57,16 @@ enum token {
DB,
DW,
INCLUDE,
- BRACE_OPEN,
- BRACE_CLOSE,
- DATA,
- BIT,
};
+struct token {
+ enum token_type type;
+ char *start;
+ u32 length;
+ void *data;
+};
+
+void token_print(struct token *tok);
+struct token token_resolve(char *token, u32 size);
+
#endif