mirror of
https://gitlab.com/camelot/kickc.git
synced 2024-11-20 02:32:36 +00:00
11 lines
188 B
NASM
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
|
|
}
|