Skip to content

Commit b6329cb

Browse files
committed
Print all characters except tokens
1 parent 32cd5d4 commit b6329cb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

zxtools/zeus2txt.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ def convert_file(parsed_args):
149149
if b == 0x0A:
150150
tab = True
151151
continue
152-
if b < ord('z'): # Printable character
152+
if b < min(ASM_META, key=ASM_META.get): # Printable character
153153
print(chr(b), end="", file=output)
154154
continue
155155
try:

0 commit comments

Comments
 (0)