1
0
mirror of https://gitlab.com/camelot/kickc.git synced 2024-10-21 17:24:39 +00:00
kickc/src/test/ref/test-comments-usage.asm
2019-02-18 00:12:30 +01:00

12 lines
228 B
NASM

// Tests that single-line comments are only included once in the output
.pc = $801 "Basic"
:BasicUpstart(main)
.pc = $80d "Program"
.label SCREEN = $400
// The program entry point
main: {
lda #'a'
sta SCREEN
rts
}