Updated the structure of symbols and tokens to hopefully help make computing symbol values easier.

This commit is contained in:
2023-08-07 01:18:01 -05:00
parent 65383cded2
commit 4af2527806
11 changed files with 128 additions and 140 deletions
+1 -2
View File
@@ -6,11 +6,10 @@
#include <stdlib.h>
#include <string.h>
#include <stdarg.h>
#include "list.h"
#include "token.h"
#include "opcodes.h"
#include "symbols_table.h"
void ParseTokens(List* tokens, SymbolTable** symbolsTable);
void ParseTokens(TokenList* tokens, SymbolTable** symbolsTable);
#endif