1
0
mirror of https://gitlab.com/camelot/kickc.git synced 2024-09-29 03:56:15 +00:00
kickc/src/test/ref/constant-string-concat-0.asm

32 lines
684 B
NASM

// Concatenates string constants in different ways
// Commodore 64 PRG executable file
.file [name="constant-string-concat-0.prg", type="prg", segments="Program"]
.segmentdef Program [segments="Basic, Code, Data"]
.segmentdef Basic [start=$0801]
.segmentdef Code [start=$80d]
.segmentdef Data [startAfter="Code"]
.segment Basic
:BasicUpstart(main)
.segment Code
main: {
.label SCREEN = $400
ldx #0
__b1:
// for( byte i=0;msg[i]!=0;i++)
lda msg,x
cmp #0
bne __b2
// }
rts
__b2:
// SCREEN[i] = msg[i]
lda msg,x
sta SCREEN,x
// for( byte i=0;msg[i]!=0;i++)
inx
jmp __b1
.segment Data
msg: .text "camelot"
.byte 0
}