Lots of changes and too much dragging my feet on this. But I think this is going in the right direction now.

This commit is contained in:
2025-06-24 23:48:26 -05:00
parent ebfd7cf94c
commit b759589e84
16 changed files with 320 additions and 51 deletions
+4 -4
View File
@@ -2,10 +2,10 @@
#define KEYWORDS_H
typedef enum {
FN, ORG, NAMESPACE, DB, CONST
} Keyword;
FUNCTION, NAMESPACE, ASCIIZ, ASCII, WORD, SHORT, BYTE
} Keywords;
int IsKeyword(const char* text, Keyword* keyword);
void GetKeywordText(Keyword keyword, char buffer[16]);
int IsKeyword(const char* text, Keywords* keyword);
void GetKeywordText(Keywords keyword, char buffer[16]);
#endif