1
0
mirror of https://gitlab.com/camelot/kickc.git synced 2024-10-21 17:24:39 +00:00
kickc/src/test/ref/importing.asm
2020-05-02 11:38:51 +02:00

17 lines
253 B
NASM

.pc = $801 "Basic"
:BasicUpstart(main)
.pc = $80d "Program"
.const RED = 2
.label BG_COLOR = $d021
main: {
.label screen = $400
// *screen = 1
lda #1
sta screen
// *BG_COLOR = RED
lda #RED
sta BG_COLOR
// }
rts
}