Code cleanup.

This commit is contained in:
2023-06-29 20:53:39 -05:00
parent 2918f2964d
commit 3031fa8b9b
6 changed files with 16 additions and 53 deletions
+1 -8
View File
@@ -11,13 +11,6 @@
#include "opcodes.h"
#include "symbols_table.h"
//#define HIGHMEMORY 65535 //64KiB - 1 AKA 0xFFFF
typedef struct {
List* Instructions;
SymbolTable* SymbolsTable;
} IRState;
IRState* ParseTokens(List*);
SymbolTable* ParseTokens(List* tokens);
#endif