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
+2 -2
View File
@@ -3,13 +3,13 @@
#include <stdio.h>
#include <string.h>
#include <sysexits.h>
#include "../includes/list.h"
#include "../includes/token.h"
#include "../includes/futil.h"
#include "../includes/scanner.h"
#include "../includes/parser.h"
const char* MagicStartName = "__start";
List* LIST;
TokenList* LIST;
SymbolTable* Symbols = NULL;
unsigned char mem[128] = {0};