mirror of
https://github.com/irmen/prog8.git
synced 2024-11-26 11:49:22 +00:00
8 lines
95 B
Plaintext
8 lines
95 B
Plaintext
|
main {
|
||
|
romsub $FFD2 = chrout(ubyte ch @ A)
|
||
|
sub start() {
|
||
|
ubyte ch = '\n'
|
||
|
chrout(ch)
|
||
|
}
|
||
|
}
|