mirror of
https://github.com/irmen/prog8.git
synced 2025-01-13 10:29:52 +00:00
14 lines
377 B
Lua
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)
|
|
}
|
|
}
|