zasm: don't accept "0X" prefix for hex anymore

This was only necessary in the time where input was upcased right after
reading.
This commit is contained in:
Virgil Dupras 2019-05-17 10:03:36 -04:00
parent 4075c90d44
commit 0f5fab23e9
1 changed files with 0 additions and 3 deletions

View File

@ -102,9 +102,6 @@ hasHexPrefix:
inc hl
ld a, (hl)
cp 'x'
jr z, .end
cp 'X'
.end:
pop hl
ret