Lots of changes and too much dragging my feet on this. But I think this is going in the right direction now.
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
#ifndef PARSER_H
|
||||
#define PARSER_H
|
||||
|
||||
#include <stdbool.h>
|
||||
#include <stdint.h>
|
||||
#include "dictionary.h"
|
||||
#include "opcodes.h"
|
||||
#include "token.h"
|
||||
#include "array.h"
|
||||
#include "keywords.h"
|
||||
|
||||
typedef struct _instruction Instruction;
|
||||
typedef Array Instructions;
|
||||
|
||||
Instructions* ParseTokens(Array* tokens);
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user