aboutsummaryrefslogtreecommitdiff
path: root/main.c
diff options
context:
space:
mode:
authorMarin Ivanov <[email protected]>2024-05-04 03:01:57 +0300
committerMarin Ivanov <[email protected]>2024-05-04 03:01:57 +0300
commit7641aaeb6a59c45baa0d25d27b9e2c6c25e183b8 (patch)
tree1986d4dc138b8b112019354693fcc804a454542e /main.c
parentcd21b90feaa9b66296b8614023349fae7d314b4b (diff)
add dummy type and size directives
Diffstat (limited to 'main.c')
-rw-r--r--main.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/main.c b/main.c
index 56df5b5..eeda181 100644
--- a/main.c
+++ b/main.c
@@ -810,6 +810,10 @@ assemble(void)
sym = getsym(v->set.sym);
sym->value = v->set.value;
break;
+ case ASM_DIR_TYPE:
+ break;
+ case ASM_DIR_SIZE:
+ break;
case ASM_LABEL:
sym = getsym(v->label.name);
if (sym->defined)