We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e8a58bc + 739ee4d commit f2b39deCopy full SHA for f2b39de
2 files changed
src/arch/zx48k/library-asm/usr_str.asm
@@ -30,7 +30,7 @@ USR_STR:
30
31
inc hl
32
ld a, (hl) ; Only the 1st char is needed
33
- and 11011111b ; Convert it to UPPER CASE
+ and %11011111 ; Convert it to UPPER CASE
34
sub 144 ; CODE(UDG "A")
35
jr nc, CONT
36
add a, 144 ; It was a letter
@@ -71,4 +71,3 @@ USR_ERROR:
71
ENDP
72
73
pop namespace
74
-
src/arch/zxnext/library-asm/usr_str.asm
0 commit comments