prog8/examples/test.p8

14 lines
377 B
Plaintext
Raw Normal View History

%import textio
%zeropage basicsafe
2021-10-27 23:48:02 +02:00
2021-10-30 15:15:11 +02:00
main {
sub start() {
2021-12-09 21:13:13 +01:00
; 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)
}
}