aboutsummaryrefslogtreecommitdiff
path: root/src/inc
diff options
context:
space:
mode:
authorMarvin Borner2021-04-19 22:38:59 +0200
committerMarvin Borner2021-04-19 22:38:59 +0200
commitdb55ea657e1edcb5d7da3dd90e4dc6b7643bbfe0 (patch)
tree3f9b26c54bf3bfafac2e30c82b67bba02883d5c1 /src/inc
8051 is awesome
Diffstat (limited to 'src/inc')
-rw-r--r--src/inc/def.h14
-rw-r--r--src/inc/gui.h8
-rw-r--r--src/inc/lexer.h64
-rw-r--r--src/inc/parser.h8
4 files changed, 94 insertions, 0 deletions
diff --git a/src/inc/def.h b/src/inc/def.h
new file mode 100644
index 0000000..bd06eb9
--- /dev/null
+++ b/src/inc/def.h
@@ -0,0 +1,14 @@
+#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))
+
+#endif
diff --git a/src/inc/gui.h b/src/inc/gui.h
new file mode 100644
index 0000000..1c7fc01
--- /dev/null
+++ b/src/inc/gui.h
@@ -0,0 +1,8 @@
+#ifndef GUI_H
+#define GUI_H
+
+int gui_init(int argc, char *argv[]);
+void gui_show_warning(const char *text);
+void gui_show_info(const char *text);
+
+#endif
diff --git a/src/inc/lexer.h b/src/inc/lexer.h
new file mode 100644
index 0000000..833e522
--- /dev/null
+++ b/src/inc/lexer.h
@@ -0,0 +1,64 @@
+#ifndef LEXER_H
+#define LEXER_H
+
+enum token {
+ UNKNOWN,
+ NEWLINE,
+ 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,
+ SWP,
+ DA,
+ CRL,
+ XCH,
+ DJNZ,
+ XCHD,
+ CALL,
+ ORG,
+ DB,
+ DW,
+ INCLUDE,
+ BRACE_OPEN,
+ BRACE_CLOSE,
+ DATA,
+ BIT,
+};
+
+#endif
diff --git a/src/inc/parser.h b/src/inc/parser.h
new file mode 100644
index 0000000..c46ead1
--- /dev/null
+++ b/src/inc/parser.h
@@ -0,0 +1,8 @@
+#ifndef LEXER_H
+#define LEXER_H
+
+#include <def.h>
+
+u8 parse(char *buf, u32 size);
+
+#endif