Added some simple symbol handling to the Parser.

This commit is contained in:
2022-05-06 18:55:22 +00:00
parent fc47bf2143
commit fbef044905
5 changed files with 90 additions and 57 deletions
+3 -5
View File
@@ -1,12 +1,10 @@
#ifndef PARSER_H
#define PARSER_H
#include <stdio.h>
#include <stdlib.h>
#include "list.h"
typedef struct {
char* name;
int address;
} Symbol;
#include "token.h"
void ParseTokens(List*);