mirror of
https://github.com/irmen/prog8.git
synced 2024-11-26 11:49:22 +00:00
14 lines
188 B
Lua
14 lines
188 B
Lua
%zeropage basicsafe
|
|
|
|
main {
|
|
|
|
&ubyte[40] topline = $0400
|
|
|
|
sub start() {
|
|
topline[0] = 'a'
|
|
topline[1] = 'b'
|
|
topline[2] = 'd'
|
|
topline[39] = '@'
|
|
}
|
|
}
|