Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion taliforth.asm
Original file line number Diff line number Diff line change
Expand Up @@ -745,7 +745,7 @@ is_printable:
; discussion of various ways to do this
cmp #AscSP ; $20
bcc _done
cmp #$7F + 1 ; '~'
cmp #$7E + 1 ; '~'
bcs _failed

sec
Expand Down