aboutsummaryrefslogtreecommitdiff
path: root/src/inc
diff options
context:
space:
mode:
Diffstat (limited to 'src/inc')
-rw-r--r--src/inc/gui.h3
-rw-r--r--src/inc/lexer.h6
-rw-r--r--src/inc/syntax.h8
3 files changed, 17 insertions, 0 deletions
diff --git a/src/inc/gui.h b/src/inc/gui.h
index 1c7fc01..aa059e5 100644
--- a/src/inc/gui.h
+++ b/src/inc/gui.h
@@ -1,8 +1,11 @@
#ifndef GUI_H
#define GUI_H
+#include <def.h>
+
int gui_init(int argc, char *argv[]);
void gui_show_warning(const char *text);
void gui_show_info(const char *text);
+void gui_highlight(u32 column, u32 line, u32 length, const char *color);
#endif
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 {
diff --git a/src/inc/syntax.h b/src/inc/syntax.h
new file mode 100644
index 0000000..7857d75
--- /dev/null
+++ b/src/inc/syntax.h
@@ -0,0 +1,8 @@
+#ifndef SYNTAX_H
+#define SYNTAX_H
+
+#include <def.h>
+
+void syntax_highlight(char *buf, u32 size);
+
+#endif