aboutsummaryrefslogtreecommitdiff
path: root/src/example/cpc.asm
blob: 0c9ff5eba7188e1b3688321e80a6a4c589043314 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
	; Simple example CPC code
	;
	; To use:
	;
	; RUN ""

	option	output-file,cpc.cdt
	option	output-format,cpc
	option	cpc-start,start

start:	org	$8000

	ld	hl,msg
loop:
	ld	a,(hl)
	ret	z
	call	$bb5a
	inc	hl
	jr	loop

	org	$8800
msg:	defb	"Hello World",0