Statistics
| Branch: | Revision:

root / tests / lm32 / test_lw.S @ d65f0831

History | View | Annotate | Download (374 Bytes)

1 d65f0831 Michael Walle
.include "macros.inc"
2 d65f0831 Michael Walle
3 d65f0831 Michael Walle
start
4 d65f0831 Michael Walle
5 d65f0831 Michael Walle
test_name LW_1
6 d65f0831 Michael Walle
load r1 data
7 d65f0831 Michael Walle
lw r3, (r1+0)
8 d65f0831 Michael Walle
check_r3 0x7e7f7071
9 d65f0831 Michael Walle
10 d65f0831 Michael Walle
test_name LW_2
11 d65f0831 Michael Walle
lw r3, (r1+4)
12 d65f0831 Michael Walle
check_r3 0x72737475
13 d65f0831 Michael Walle
14 d65f0831 Michael Walle
test_name LW_3
15 d65f0831 Michael Walle
lw r3, (r1+-4)
16 d65f0831 Michael Walle
check_r3 0x7a7b7c7d
17 d65f0831 Michael Walle
18 d65f0831 Michael Walle
test_name LW_4
19 d65f0831 Michael Walle
load r3 data
20 d65f0831 Michael Walle
lw r3, (r3+0)
21 d65f0831 Michael Walle
check_r3 0x7e7f7071
22 d65f0831 Michael Walle
23 d65f0831 Michael Walle
end
24 d65f0831 Michael Walle
25 d65f0831 Michael Walle
.data
26 d65f0831 Michael Walle
	.align 4
27 d65f0831 Michael Walle
	.byte 0x7a, 0x7b, 0x7c, 0x7d
28 d65f0831 Michael Walle
data:
29 d65f0831 Michael Walle
	.byte 0x7e, 0x7f, 0x70, 0x71
30 d65f0831 Michael Walle
	.byte 0x72, 0x73, 0x74, 0x75