From 0f5fab23e9556a06acbe07781e644857d0290e36 Mon Sep 17 00:00:00 2001 From: Virgil Dupras Date: Fri, 17 May 2019 10:03:36 -0400 Subject: [PATCH] zasm: don't accept "0X" prefix for hex anymore This was only necessary in the time where input was upcased right after reading. --- apps/zasm/parse_z.asm | 3 --- 1 file changed, 3 deletions(-) diff --git a/apps/zasm/parse_z.asm b/apps/zasm/parse_z.asm index acb997b..e42eeaf 100644 --- a/apps/zasm/parse_z.asm +++ b/apps/zasm/parse_z.asm @@ -102,9 +102,6 @@ hasHexPrefix: inc hl ld a, (hl) cp 'x' - jr z, .end - cp 'X' -.end: pop hl ret