1
0
mirror of https://gitlab.com/camelot/kickc.git synced 2024-09-30 09:57:11 +00:00
kickc/src/test/ref/inline-assignment.asm

17 lines
208 B
NASM

.pc = $801 "Basic"
:BasicUpstart(main)
.pc = $80d "Program"
.label SCREEN = $400
main: {
ldx #0
__b1:
txa
sta SCREEN,x
txa
sta SCREEN+$50,x
inx
cpx #$28
bne __b1
rts
}