mirror of
https://github.com/irmen/prog8.git
synced 2024-10-31 09:08:02 +00:00
16 lines
202 B
Lua
16 lines
202 B
Lua
%import c64utils
|
|
%zeropage basicsafe
|
|
|
|
~ main {
|
|
|
|
; @todo see problem in looplabelproblem.p8
|
|
|
|
sub start() {
|
|
|
|
ubyte ub
|
|
A = 123 or 44
|
|
Y = A or 1
|
|
ub = ub or 1
|
|
}
|
|
}
|