Created the skeleton for the parser.
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
#ifndef PARSER_H
|
||||
#define PARSER_H
|
||||
|
||||
#include "list.h"
|
||||
|
||||
typedef struct {
|
||||
char* name;
|
||||
int address;
|
||||
} Symbol;
|
||||
|
||||
void ParseTokens(List*);
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user