1
0
mirror of https://gitlab.com/camelot/kickc.git synced 2024-09-09 08:54:40 +00:00
kickc/src/test/ref/code-after-return-1.asm

14 lines
208 B
NASM

// Test code after return in main()
.pc = $801 "Basic"
:BasicUpstart(main)
.pc = $80d "Program"
.const b = 0
.label SCREEN = $400
main: {
// SCREEN[0] = b
lda #b
sta SCREEN
// }
rts
}