Changed dup (0) to dup (?)
authorRobert Pengelly <robertapengelly@hotmail.com>
Thu, 21 May 2026 06:12:28 +0000 (07:12 +0100)
committerRobert Pengelly <robertapengelly@hotmail.com>
Thu, 21 May 2026 06:12:28 +0000 (07:12 +0100)
parse.c

diff --git a/parse.c b/parse.c
index e348d597facc2f4ae6de8d57b559f853eb428014..9ef7594b26542a46fc5c4ea4f03130d3026e85b1 100644 (file)
--- a/parse.c
+++ b/parse.c
@@ -33296,7 +33296,7 @@ static void emit_global_space (long bytes) {
     }
     
     if (state->syntax & ASM_SYNTAX_MASM) {
-        fprintf (state->ofp, "    db %ld dup (0)\n", bytes);
+        fprintf (state->ofp, "    db %ld dup (?)\n", bytes);
     } else if (state->syntax & ASM_SYNTAX_NASM) {
         fprintf (state->ofp, "    resb %ld\n", bytes);
     } else {