mirror of
https://gitlab.com/camelot/kickc.git
synced 2024-11-20 02:32:36 +00:00
12 lines
197 B
NASM
12 lines
197 B
NASM
// Test of simple enum - inline enum definitions
|
|
.pc = $801 "Basic"
|
|
:BasicUpstart(main)
|
|
.pc = $80d "Program"
|
|
main: {
|
|
.const ON = 1
|
|
.label SCREEN = $400
|
|
lda #ON
|
|
sta SCREEN
|
|
rts
|
|
}
|