aboutsummaryrefslogtreecommitdiffstats
path: root/tests/mov_addressing_dest.s
blob: 8698a925c59dc34f3c17a9263c298569cce45953 (plain)
1
2
3
4
5
6
7
8
9
10
11
main:
	mov #64, r4
	mov r4, r5
	mov #42, r4
	mov r4, @r5
	mov r4, 4(r5)
	mov #50, mem
	mov &mem, &0x50
	ret

mem: .byte 5