1
0
mirror of https://gitlab.com/camelot/kickc.git synced 2024-09-09 08:54:40 +00:00
kickc/src/test/ref/enum-1.asm
2020-02-23 09:44:36 +01:00

14 lines
272 B
NASM

// Test of simple enum - three-value enum with specified integer values and increment
.pc = $801 "Basic"
:BasicUpstart(main)
.pc = $80d "Program"
.const BROKEN = 9
main: {
.label SCREEN = $400
// *SCREEN = state
lda #BROKEN
sta SCREEN
// }
rts
}