1
0
mirror of https://gitlab.com/camelot/kickc.git synced 2024-09-29 03:56:15 +00:00
kickc/src/test/ref/inline-asm-param.asm

18 lines
225 B
NASM
Raw Normal View History

2019-08-10 23:16:56 +00:00
.pc = $801 "Basic"
:BasicUpstart(main)
.pc = $80d "Program"
.label SCREEN = $400
main: {
ldx #0
__b1:
2020-02-23 08:44:36 +00:00
// asm
2019-08-10 23:16:56 +00:00
lda #'a'
sta SCREEN
2020-02-23 08:44:36 +00:00
// for( byte i:0..3)
2019-08-10 23:16:56 +00:00
inx
cpx #4
bne __b1
2020-02-23 08:44:36 +00:00
// }
2019-08-10 23:16:56 +00:00
rts
}