aboutsummaryrefslogtreecommitdiff
path: root/src/inc/lexer.h
diff options
context:
space:
mode:
authorMarvin Borner2021-04-21 00:05:04 +0200
committerMarvin Borner2021-04-21 00:05:04 +0200
commitc219c38e854fe15bc47519d2df0d6cbd7bab2ab7 (patch)
tree239b84c05371b4e853b40ebb52b1ad744fe0fc53 /src/inc/lexer.h
parentf31fc8b66eee149bd78603996f34264be8fad411 (diff)
Started syntax highlighting
doesn't work but don't want to fix lel.
Diffstat (limited to 'src/inc/lexer.h')
-rw-r--r--src/inc/lexer.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/inc/lexer.h b/src/inc/lexer.h
index c3999e7..f323f58 100644
--- a/src/inc/lexer.h
+++ b/src/inc/lexer.h
@@ -8,6 +8,7 @@ enum token_type {
NEWLINE,
SPACE,
+ INSTR_START,
NOP,
JBC,
JB,
@@ -61,6 +62,7 @@ enum token_type {
DATA,
BIT,
INCLUDE,
+ INSTR_END,
HASH,
DOLLAR,
@@ -71,13 +73,16 @@ enum token_type {
COLON,
SEMICOLON,
+ NUM_START,
DEC_NUM,
HEX_NUM,
BIN_NUM,
+ NUM_END,
STRING,
// Registers
+ REGS_START,
ACCU,
ATR0,
ATR1,
@@ -89,6 +94,7 @@ enum token_type {
R5,
R6,
R7,
+ REGS_END,
};
struct token {