]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - sim/testsuite/sim/fr30/or.cgs
Initial creation of sourceware repository
[thirdparty/binutils-gdb.git] / sim / testsuite / sim / fr30 / or.cgs
1 # fr30 testcase for or $Rj,$Ri, or $Rj,@$Ri
2 # mach(): fr30
3
4 .include "testutils.inc"
5
6 START
7
8 .text
9 .global or
10 or:
11 ; Test or $Rj,$Ri
12 mvi_h_gr 0xaaaaaaaa,r7
13 mvi_h_gr 0x55555555,r8
14 set_cc 0x07 ; Set mask opposite of expected
15 or r7,r8
16 test_cc 1 0 1 1
17 test_h_gr 0xffffffff,r8
18
19 mvi_h_gr 0x00000000,r7
20 mvi_h_gr 0x00000000,r8
21 set_cc 0x08 ; Set mask opposite of expected
22 or r7,r8
23 test_cc 0 1 0 0
24 test_h_gr 0x00000000,r8
25
26 mvi_h_gr 0xdead0000,r7
27 mvi_h_gr 0x0000beef,r8
28 set_cc 0x05 ; Set mask opposite of expected
29 or r7,r8
30 test_cc 1 0 0 1
31 test_h_gr 0xdeadbeef,r8
32
33 ; Test or $Rj,@$Ri
34 mvi_h_gr 0xaaaaaaaa,r7
35 mvi_h_mem 0x55555555,sp
36 set_cc 0x07 ; Set mask opposite of expected
37 or r7,@sp
38 test_cc 1 0 1 1
39 test_h_mem 0xffffffff,sp
40
41 mvi_h_gr 0x00000000,r7
42 mvi_h_mem 0x00000000,sp
43 set_cc 0x08 ; Set mask opposite of expected
44 or r7,@sp
45 test_cc 0 1 0 0
46 test_h_mem 0x00000000,sp
47
48 mvi_h_gr 0xdead0000,r7
49 mvi_h_mem 0x0000beef,sp
50 set_cc 0x05 ; Set mask opposite of expected
51 or r7,@sp
52 test_cc 1 0 0 1
53 test_h_mem 0xdeadbeef,sp
54
55 pass