Skip to content

Commit

Permalink
Add petscii_lowercase string encoding.
Browse files Browse the repository at this point in the history
  • Loading branch information
dillof committed Aug 10, 2024
1 parent 3ec53c9 commit fd42245
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions share/target/c64-encodings.inc
Original file line number Diff line number Diff line change
Expand Up @@ -219,4 +219,23 @@
}
}

.string_encoding petscii_lowercase {
base {
petscii {
use [
: $00 - $40: $00
: $5b - $60: $5b
: $7b - $7d: $7b
: $80 - $a8: $80
: $aa - $b9: $aa
: $bb - $bf: $bb
]
}
}
ranges [
: $41 : "a" - "z"
: $61 : "A" - "Z"
] ; TODO: add $7e, $7f, $a9, $ba
}

.default_string_encoding petscii

0 comments on commit fd42245

Please sign in to comment.