prog8/examples/test.p8
2023-03-18 12:43:45 +01:00

35 lines
485 B
Lua

%import textio
%import test_stack
%zeropage basicsafe
%option no_sysinit
; $1e4 size
main {
sub start() {
test_stack.test()
uword xx=4000
ubyte a
ubyte b
ubyte c
ubyte d
cx16.r0 = peekw(a+xx+b+c+d)
; TODO @(a+xx+b+c+d) = cx16.r0L
; if cx16.r0L in "derp" {
; xx++
; }
;
; xx = xx+(3*func(xx)+xx*2*cx16.r0L)
; txt.print_uw(xx)
test_stack.test()
}
; sub func(uword value) -> uword {
; value ++
; return value
; }
}