Skip to content
This repository has been archived by the owner on Aug 20, 2024. It is now read-only.

Commit

Permalink
github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
mortenjc committed Jul 19, 2024
1 parent 4513b53 commit 7d76f94
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/z80io.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@
#

def isprintable(c):
return c >= 0x20 and c <= 0x7D
"""True if character is printable ASCII"""
return 0x20 <= c <= 0x7D


class IO:
Expand Down

0 comments on commit 7d76f94

Please sign in to comment.