daily update
[external/binutils.git] / sim / testsuite / sim / fr30 / eorh.cgs
1 # fr30 testcase for eorh $Rj,$Ri, eorh $Rj,@$Ri
2 # mach(): fr30
3
4         .include "testutils.inc"
5
6         START
7
8         .text
9         .global eorh
10 eorh:
11         ; Test eorh $Rj,@$Ri
12         mvi_h_gr        0xaaaaaaaa,r7
13         mvi_h_mem       0x55555555,sp
14         set_cc          0x07            ; Set mask opposite of expected
15         eorh            r7,@sp
16         test_cc         1 0 1 1
17         test_h_mem      0xffff5555,sp
18
19         mvi_h_gr        0xaaaa0000,r7
20         mvi_h_mem       0x00005555,sp
21         set_cc          0x08            ; Set mask opposite of expected
22         eorh            r7,@sp
23         test_cc         0 1 0 0
24         test_h_mem      0x00005555,sp
25
26         mvi_h_gr        0xaaaa5555,r7
27         mvi_h_mem       0x5555aaaa,sp
28         set_cc          0x0b            ; Set mask opposite of expected
29         eorh            r7,@sp
30         test_cc         0 1 1 1
31         test_h_mem      0x0000aaaa,sp
32
33         mvi_h_gr        0x0000de00,r7
34         mvi_h_mem       0x00adbeef,sp
35         set_cc          0x05            ; Set mask opposite of expected
36         eorh            r7,@sp
37         test_cc         1 0 0 1
38         test_h_mem      0xdeadbeef,sp
39
40         pass