1
0
mirror of https://gitlab.com/camelot/kickc.git synced 2024-10-02 22:56:11 +00:00
kickc/src/test/ref/enum-4.asm
2019-06-19 01:45:07 +02:00

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
}