asm: add missing includes

This commit is contained in:
2024-11-22 22:30:15 +00:00
parent ceb9f10b66
commit f1be82c495
2 changed files with 19 additions and 13 deletions

View File

@@ -2,8 +2,9 @@
#define _LEX_H_
#include <blue/core/queue.h>
#include <blue/object/string.h>
#include <blue/object/dict.h>
#include <blue/object/string.h>
#include <ivy/asm/lex.h>
#include <stdint.h>
enum lexer_state_type {
@@ -19,7 +20,7 @@ struct lexer_state {
struct ivy_asm_lexer_symbol_node {
char s_char;
enum ivy_symbol s_id;
enum ivy_asm_symbol s_id;
b_queue_entry s_entry;
b_queue s_children;
@@ -50,4 +51,4 @@ struct ivy_asm_lexer {
size_t lex_linebuf_ptr;
};
#endif
#endif