1
0
mirror of https://gitlab.com/camelot/kickc.git synced 2024-10-03 14:56:30 +00:00
kickc/src/test/ref/enum-4.asm

12 lines
197 B
NASM
Raw Normal View History

// 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
}