summaryrefslogtreecommitdiff
path: root/test/load-store.s
blob: 60a5a8f6e128bbf5df25f2144fcf06d5a63e07a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
.org $8000

reset:
	cps
	ldx.w #$FFFF
	txs
@clear:
	and #0
	tax
	tab
	deb
@loop:
	lsl #8
	lda #$FF
	cmp b
	beq @clear
	bra @loop

.org $FFC0
.qword reset
a
d