prog8/examples/test.p8
Irmen de Jong d8d56b195f comments
2021-12-09 21:13:13 +01:00

14 lines
377 B
Lua

%import textio
%zeropage basicsafe
main {
sub start() {
; TODO other variants of this const folding
uword load_location = $6000
cx16.r0 = load_location + 8000 + 1000 + 1000
cx16.r1L = @(load_location + 8000 + 1000 + 1000)
cx16.r2 = 8000 + 1000 + 1000 + load_location
cx16.r3L = @(8000 + 1000 + 1000 + load_location)
}
}