1
0
mirror of https://gitlab.com/camelot/kickc.git synced 2024-09-29 03:56:15 +00:00
kickc/src/test/ref/word-pointer-math.asm
2020-02-23 09:44:36 +01:00

49 lines
774 B
NASM

// Tests simple word pointer math
.pc = $801 "Basic"
:BasicUpstart(main)
.pc = $80d "Program"
main: {
.label SCREEN = $400
.label w = 3
.label idx = 2
lda #0
sta.z idx
tax
__b1:
// words+i
txa
asl
// w = *(words+i)
tay
lda words,y
sta.z w
lda words+1,y
sta.z w+1
// <w
lda.z w
// SCREEN[idx++] = <w
ldy.z idx
sta SCREEN,y
// SCREEN[idx++] = <w;
iny
// >w
lda.z w+1
// SCREEN[idx++] = >w
sta SCREEN,y
// SCREEN[idx++] = >w;
iny
tya
// idx++;
clc
adc #1
sta.z idx
// for( byte i: 0..3)
inx
cpx #4
bne __b1
// }
rts
// Clever word array that represents C64 numbers 0-7
words: .word $3130, $3332, $3534, $3736
}