aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/generator.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/generator.c b/src/generator.c
index 333dd5b..60a2b89 100644
--- a/src/generator.c
+++ b/src/generator.c
@@ -102,7 +102,7 @@ void gen_const(const char name[], int value, Scope scope) {
102 102
103 case GLOBAL: 103 case GLOBAL:
104 glo_addConst(name); 104 glo_addConst(name);
105 fprintf(output, "%s: db QWORD %d\n", name, value); 105 fprintf(output, "%s dq %d\n", name, value);
106 return; 106 return;
107 } 107 }
108} 108}