mirror of
https://github.com/KarolS/millfork.git
synced 2025-01-18 13:30:24 +00:00
TSR-80 newline is just 0x0D
This commit is contained in:
parent
3af4fcffa9
commit
2d7c365b20
@ -116,6 +116,10 @@ English, Japanese, Spanish/Italian and French/German respectively
|
|||||||
|
|
||||||
* `galaksija` – text encoding used on Galaksija computers
|
* `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
|
* `coco` – text encoding used on Tandy Color Computer
|
||||||
|
|
||||||
* `cocoscr` – Tandy Color Computer screencodes
|
* `cocoscr` – Tandy Color Computer screencodes
|
||||||
|
@ -8,6 +8,6 @@ EOT=00
|
|||||||
|
|
||||||
{b}=08
|
{b}=08
|
||||||
{t}=09
|
{t}=09
|
||||||
{n}=0d0a
|
{n}=0d
|
||||||
{q}=22
|
{q}=22
|
||||||
{apos}=27
|
{apos}=27
|
||||||
|
@ -8,8 +8,11 @@ EOT=00
|
|||||||
|
|
||||||
{b}=08
|
{b}=08
|
||||||
{t}=09
|
{t}=09
|
||||||
{n}=0d0a
|
{n}=0d
|
||||||
{q}=22
|
{q}=22
|
||||||
{apos}=27
|
{apos}=27
|
||||||
{lbrace}=7b
|
{lbrace}=7b
|
||||||
{rbrace}=7d
|
{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
|
||||||
|
@ -23,4 +23,4 @@ asm pointer readline() {
|
|||||||
LD (HL),0
|
LD (HL),0
|
||||||
LD HL, readline_out
|
LD HL, readline_out
|
||||||
RET
|
RET
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user