aboutsummaryrefslogtreecommitdiff
path: root/src/inc
diff options
context:
space:
mode:
Diffstat (limited to 'src/inc')
-rw-r--r--src/inc/def.h16
-rw-r--r--src/inc/gui.h18
-rw-r--r--src/inc/lexer.h110
-rw-r--r--src/inc/parser.h8
-rw-r--r--src/inc/syntax.h8
-rw-r--r--src/inc/warnings.h17
6 files changed, 0 insertions, 177 deletions
diff --git a/src/inc/def.h b/src/inc/def.h
deleted file mode 100644
index 22e1bda..0000000
--- a/src/inc/def.h
+++ /dev/null
@@ -1,16 +0,0 @@
-#ifndef DEF_H
-#define DEF_H
-
-typedef unsigned int u32;
-typedef unsigned short u16;
-typedef unsigned char u8;
-
-typedef signed int s32;
-typedef signed short s16;
-typedef signed char s8;
-
-#define UNUSED(bla) ((void)(bla))
-#define MIN(a, b) (((a) < (b)) ? (a) : (b))
-#define MAX(a, b) (((a) > (b)) ? (a) : (b))
-
-#endif
diff --git a/src/inc/gui.h b/src/inc/gui.h
deleted file mode 100644
index 39918ca..0000000
--- a/src/inc/gui.h
+++ /dev/null
@@ -1,18 +0,0 @@
-#ifndef GUI_H
-#define GUI_H
-
-#include <def.h>
-#include <gtk/gtk.h>
-
-int gui_init(int argc, char *argv[]);
-void gui_show_warning(const char *text);
-void gui_show_info(const char *text);
-
-void gui_add_line_marker(u32 line_number, const char *message, const char *name, const char *category, const char *icon, GdkRGBA rgba);
-void gui_remove_line_marker(const char *category);
-
-void gui_unhighlight(void);
-void gui_unhighlight_name(const char *tag_name);
-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
deleted file mode 100644
index 33b56af..0000000
--- a/src/inc/lexer.h
+++ /dev/null
@@ -1,110 +0,0 @@
-#ifndef LEXER_H
-#define LEXER_H
-
-#include <def.h>
-
-enum token_type {
- UNKNOWN,
- NEWLINE,
- END,
- SPACE,
-
- INSTR_START,
- NOP,
- JBC,
- JB,
- JNB,
- JC,
- JNC,
- JZ,
- JNZ,
- SJMP,
- MOV,
- ORL,
- ANL,
- PUSH,
- POP,
- MOVX,
- AJMP,
- ACALL,
- LJMP,
- LCALL,
- RETI,
- RET,
- XRL,
- CPL,
- CLR,
- SETB,
- RR,
- RRC,
- RL,
- RLC,
- XLR,
- JMP,
- MOVC,
- INC,
- DEC,
- ADD,
- ADDC,
- DIV,
- DUBB,
- MUL,
- CJNE,
- SWAP,
- DA,
- CRL,
- XCH,
- DJNZ,
- XCHD,
- CALL,
- ORG,
- DB,
- DW,
- DATA,
- BIT,
- INCLUDE,
- INSTR_END,
-
- HASH,
- DOLLAR,
- SLASH,
- PLUS,
- COMMA,
- DOT,
- COLON,
- SEMICOLON,
-
- NUM_START,
- DEC_NUM,
- HEX_NUM,
- BIN_NUM,
- NUM_END,
-
- STRING,
-
- // Registers
- REGS_START,
- ACCU,
- ATR0,
- ATR1,
- R0,
- R1,
- R2,
- R3,
- R4,
- R5,
- R6,
- R7,
- REGS_END,
-};
-
-struct token {
- enum token_type type;
- char *start;
- u32 length;
-};
-
-void token_print(struct token *tok);
-struct token token_resolve(char *token, u32 size);
-
-#endif
diff --git a/src/inc/parser.h b/src/inc/parser.h
deleted file mode 100644
index 0c59681..0000000
--- a/src/inc/parser.h
+++ /dev/null
@@ -1,8 +0,0 @@
-#ifndef PARSER_H
-#define PARSER_H
-
-#include <def.h>
-
-u8 parse(char *buf, u32 size);
-
-#endif
diff --git a/src/inc/syntax.h b/src/inc/syntax.h
deleted file mode 100644
index 7857d75..0000000
--- a/src/inc/syntax.h
+++ /dev/null
@@ -1,8 +0,0 @@
-#ifndef SYNTAX_H
-#define SYNTAX_H
-
-#include <def.h>
-
-void syntax_highlight(char *buf, u32 size);
-
-#endif
diff --git a/src/inc/warnings.h b/src/inc/warnings.h
deleted file mode 100644
index 76da8b4..0000000
--- a/src/inc/warnings.h
+++ /dev/null
@@ -1,17 +0,0 @@
-#ifndef WARNINGS_H
-#define WARNINGS_H
-
-#include <def.h>
-
-struct context {
- u32 line;
- u32 column;
-};
-
-void warnings_print(void);
-void warnings_add(struct context *ctx, const char *fmt, ...);
-void warnings_clear(void);
-void warnings_remove_marks(void);
-u8 warnings_exist(void);
-
-#endif