summaryrefslogtreecommitdiff
path: root/tests/tcg/lm32/test_sri.S
blob: c1be907b5befef78a560f21e1102622a45a81a6f (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
31
32
33
34
35
36
37
38
39
40
.include "macros.inc"

start

test_name SRI_1
mvi r1, 1
sri r3, r1, 0
check_r3 1

test_name SRI_2
mvi r1, 0
sri r3, r1, 1
check_r3 0

test_name SRI_3
load r1 0x40000000
sri r3, r1, 30
check_r3 1

test_name SRI_4
load r1 0x40000000
sri r3, r1, 31
check_r3 0

test_name SRI_5
mvi r3, 2
sri r3, r3, 2
check_r3 0

test_name SRI_6
mvi r1, 0xfffffff0
sri r3, r1, 2
check_r3 0xfffffffc

test_name SRI_7
mvi r1, 0xfffffff0
sri r3, r1, 4
check_r3 0xffffffff

end