1
0
mirror of https://gitlab.com/camelot/kickc.git synced 2024-10-21 02:24:34 +00:00
kickc/src/test/ref/simple-loop.asm

20 lines
232 B
NASM

.pc = $801 "Basic"
:BasicUpstart(main)
.pc = $80d "Program"
main: {
.label SCREEN = $400
ldx #0
b1:
cpx #$80
bcc b2
rts
b2:
lda #'a'
sta SCREEN,x
lda #0
sta $d020
inx
inx
jmp b1
}