1
0
mirror of https://gitlab.com/camelot/kickc.git synced 2024-10-21 17:24:39 +00:00
kickc/src/test/ref/unused-method.asm
2020-02-23 09:44:36 +01:00

12 lines
159 B
NASM

.pc = $801 "Basic"
:BasicUpstart(main)
.pc = $80d "Program"
main: {
.label screen = $400
// screen[0] = 1
lda #1
sta screen
// }
rts
}