TSR-80 newline is just 0x0D

This commit is contained in:
Karol Stasiak 2020-09-27 18:58:46 +02:00
parent 3af4fcffa9
commit 2d7c365b20
4 changed files with 10 additions and 3 deletions

View File

@ -116,6 +116,10 @@ English, Japanese, Spanish/Italian and French/German respectively
* `galaksija` text encoding used on Galaksija computers
* `trs80m1` text encoding used on TRS-80 Model 1
* `trs80m3` text encoding used on TRS-80 Model 3
* `coco` text encoding used on Tandy Color Computer
* `cocoscr` Tandy Color Computer screencodes

View File

@ -8,6 +8,6 @@ EOT=00
{b}=08
{t}=09
{n}=0d0a
{n}=0d
{q}=22
{apos}=27

View File

@ -8,8 +8,11 @@ EOT=00
{b}=08
{t}=09
{n}=0d0a
{n}=0d
{q}=22
{apos}=27
{lbrace}=7b
{rbrace}=7d
; TODO: TRS-80 Model 3 can display katakana, accented Latin letters and some extra symbols
; This involves control codes $15 and $16 in some way

View File

@ -23,4 +23,4 @@ asm pointer readline() {
LD (HL),0
LD HL, readline_out
RET
}
}