mirror of
https://github.com/irmen/prog8.git
synced 2024-11-01 15:07:10 +00:00
26 lines
323 B
Lua
26 lines
323 B
Lua
|
|
main {
|
|
|
|
sub start() {
|
|
|
|
ubyte xx
|
|
|
|
xx |= 44
|
|
xx &= 44
|
|
xx ^= 44
|
|
|
|
xx |= @($d020)
|
|
xx &= @($d020)
|
|
xx ^= @($d020)
|
|
|
|
uword ww
|
|
|
|
ww |= $4433
|
|
ww &= $4433
|
|
ww ^= $4433
|
|
ww |= @($d020)
|
|
ww &= @($d020)
|
|
ww ^= @($d020)
|
|
}
|
|
}
|