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

35 lines
464 B
NASM

// Tests statement sequence generation
.pc = $801 "Basic"
:BasicUpstart(main)
.pc = $80d "Program"
main: {
.label SCREEN = $400
ldy #0
__b1:
// c = i+5
tya
tax
axs #-[5]
// i&1
tya
and #1
// if((i&1)==0 || i>5)
cmp #0
beq __b3
cpy #5+1
bcc __b2
__b3:
// c++;
inx
__b2:
// SCREEN[i] = c
txa
sta SCREEN,y
// for(byte i: 0..10)
iny
cpy #$b
bne __b1
// }
rts
}