1
0
mirror of https://gitlab.com/camelot/kickc.git synced 2024-09-29 03:56:15 +00:00
kickc/src/test/ref/test-comments-usage.asm
2020-02-23 09:44:36 +01:00

14 lines
258 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: {
// *SCREEN = 'a'
lda #'a'
sta SCREEN
// }
rts
}