#ifndef PARSER_H #define PARSER_H #include #include #include #include "list.h" #include "token.h" #include "opcodes.h" #include "symbols_table.h" //#define HIGHMEMORY 65535 //64KiB - 1 AKA 0xFFFF typedef struct { List* Instructions; SymbolTable* SymbolsTable; } IRState; IRState* ParseTokens(List*); #endif