Statistics
| Branch: | Revision:

root / tests / lm32 / test_sexth.S @ d65f0831

History | View | Annotate | Download (221 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 SEXTH_1
6 d65f0831 Michael Walle
mvi r1, 0
7 d65f0831 Michael Walle
sexth r3, r1
8 d65f0831 Michael Walle
check_r3 0
9 d65f0831 Michael Walle
10 d65f0831 Michael Walle
test_name SEXTH_2
11 d65f0831 Michael Walle
load r1 0x7fff
12 d65f0831 Michael Walle
sexth r3, r1
13 d65f0831 Michael Walle
check_r3 0x00007fff
14 d65f0831 Michael Walle
15 d65f0831 Michael Walle
test_name SEXTH_3
16 d65f0831 Michael Walle
load r1 0x8000
17 d65f0831 Michael Walle
sexth r3, r1
18 d65f0831 Michael Walle
check_r3 0xffff8000
19 d65f0831 Michael Walle
20 d65f0831 Michael Walle
end