From db55ea657e1edcb5d7da3dd90e4dc6b7643bbfe0 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Mon, 19 Apr 2021 22:38:59 +0200 Subject: 8051 is awesome --- src/inc/def.h | 14 +++++++++++++ src/inc/gui.h | 8 +++++++ src/inc/lexer.h | 64 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ src/inc/parser.h | 8 +++++++ 4 files changed, 94 insertions(+) create mode 100644 src/inc/def.h create mode 100644 src/inc/gui.h create mode 100644 src/inc/lexer.h create mode 100644 src/inc/parser.h (limited to 'src/inc') 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 + +u8 parse(char *buf, u32 size); + +#endif -- cgit v1.2.3