1
0
mirror of https://gitlab.com/camelot/kickc.git synced 2024-09-08 17:54:40 +00:00
kickc/src/test/ref/long-pointer-1.asm

21 lines
437 B
NASM

// Tests creating a long (32bit) pointer on zeropage for 45GS02 flat memory access
.pc = $801 "Basic"
:BasicUpstart(main)
.pc = $80d "Program"
main: {
.const long_ptr_zp = long_ptr
.label long_ptr = 2
lda #<$12345678
sta.z long_ptr
lda #>$12345678
sta.z long_ptr+1
lda #<$12345678>>$10
sta.z long_ptr+2
lda #>$12345678>>$10
sta.z long_ptr+3
nop
lda (long_ptr_zp),y
sta.z $ff
rts
}