summaryrefslogtreecommitdiff
path: root/asmmon.h
diff options
context:
space:
mode:
authormrb0nk500 <b0nk@b0nk.xyz>2020-09-21 13:31:39 -0400
committermrb0nk500 <b0nk@b0nk.xyz>2020-09-21 13:31:39 -0400
commit9932fac52c0cac2e9e0e11c84dfdf99e0a87ebfb (patch)
treeff97b9288293614fefc6f3ed972c3db69cba6f6e /asmmon.h
parenteea04e3327972f052dcfb8ae0854b77f87d3d52f (diff)
- Fixed some issues with how structs, and unions were
handled. - Added a function called fix_symtree(), which when called. will rearrange the symbol tree based on the order they're declared in by the token stream. The reason I wrote this, was to make sure the symbol tree could be printed correctly. - Optimized print_symtree() to now use tail recursion. - Started adding all of the SuB Suite's structs.
Diffstat (limited to 'asmmon.h')
-rw-r--r--asmmon.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/asmmon.h b/asmmon.h
index 7db9b4c..27a6ede 100644
--- a/asmmon.h
+++ b/asmmon.h
@@ -61,6 +61,7 @@ struct sym {
uint16_t count;
uint64_t val;
uint8_t isstruct;
+ uint8_t isanon;
uint8_t def;
char *name;
uint16_t id;