mirror of
https://github.com/irmen/prog8.git
synced 2024-11-23 07:32:10 +00:00
11 lines
151 B
Lua
11 lines
151 B
Lua
%import textio
|
|
%zeropage basicsafe
|
|
|
|
main {
|
|
romsub $FFD2 = chrout(ubyte ch @ A)
|
|
sub start() {
|
|
ubyte ch = '2'
|
|
chrout(ch)
|
|
}
|
|
}
|