aboutsummaryrefslogtreecommitdiff
path: root/src/example/vic20+8k.asm
blob: 32de0d755fb68cddf538f131af4ea49abb1cb408 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
	; Simple example C64 code
	;

	cpu 6502

	option	codepage,cbm

	option	output-file,vic20+8k.prg
	option	output-format,prg
	option	prg-start,start
        option  prg-system,vic20+8k

	org $1300

main:
	lda	#0
	clc
loop:
	sta	36879
	adc	#1
        pha
        jsr     $ffe4
        beq     nokey
        rts
nokey:
        pla
	jmp	loop

start:
	jmp	main