1
0
mirror of https://gitlab.com/camelot/kickc.git synced 2024-11-20 02:32:36 +00:00
kickc/src/test/ref/useglobal.asm
2019-02-18 00:12:30 +01:00

11 lines
188 B
NASM

// Tests procedures using global variables (should not fail)
.pc = $801 "Basic"
:BasicUpstart(main)
.pc = $80d "Program"
.label SCREEN = $400
main: {
lda #1
sta SCREEN
rts
}