From 7e01d028e74f0e93a62bacc75fc87ec37bdac208 Mon Sep 17 00:00:00 2001 From: Robert Pengelly Date: Thu, 21 May 2026 07:12:28 +0100 Subject: [PATCH] Changed dup (0) to dup (?) --- parse.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/parse.c b/parse.c index e348d59..9ef7594 100644 --- 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 { -- 2.34.1