Created the skeleton for the parser.

This commit is contained in:
2022-02-07 15:33:58 +00:00
parent 7c6e5e1541
commit 3d4ab57f05
5 changed files with 74 additions and 3 deletions
+13
View File
@@ -0,0 +1,13 @@
#ifndef PARSER_H
#define PARSER_H
#include "list.h"
typedef struct {
char* name;
int address;
} Symbol;
void ParseTokens(List*);
#endif