From 40d5530666708fd0e1a3e9f078b43aa0779adef8 Mon Sep 17 00:00:00 2001 From: Virgil Dupras Date: Fri, 17 May 2019 17:21:49 -0400 Subject: [PATCH] zasm: allow expression in .db --- apps/zasm/directive.asm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/zasm/directive.asm b/apps/zasm/directive.asm index 7578b2d..de1dcf4 100644 --- a/apps/zasm/directive.asm +++ b/apps/zasm/directive.asm @@ -32,7 +32,7 @@ handleDB: ld hl, scratchpad call enterDoubleQuotes jr z, .stringLiteral - call parseLiteral + call parseExpr ld a, ixl call ioPutC .stopStrLit: