* sim/cris/asm/testutils.inc (test_move_cc): Add missing call to
[deliverable/binutils-gdb.git] / sim / testsuite / sim / cris / asm / movecr.ms
CommitLineData
5e1f6430
HPN
1# mach: crisv3 crisv8 crisv10 crisv32
2# output: ffffff42\n94\nffff4321\n9234\n76543210\n76540000\n
3
4; Move constant byte, word, dword to register. Check that no extension is
5; performed, that only part of the register is set.
6
7 .include "testutils.inc"
8 startnostack
9 moveq -1,r3
10 move.b 0x42,r3
11 test_move_cc 0 0 0 0
12 dumpr3
13
14 moveq 0,r3
15 move.b 0x94,r3
9538c15c 16 test_move_cc 1 0 0 0
5e1f6430
HPN
17 dumpr3
18
19 moveq -1,r3
20 move.w 0x4321,r3
9538c15c 21 test_move_cc 0 0 0 0
5e1f6430
HPN
22 dumpr3
23
24 moveq 0,r3
25 move.w 0x9234,r3
26 test_move_cc 1 0 0 0
27 dumpr3
28
29 move.d 0x76543210,r3
30 test_move_cc 0 0 0 0
31 dumpr3
32
33 move.w 0,r3
34 test_move_cc 0 1 0 0
35 dumpr3
36
37 quit
This page took 0.091828 seconds and 4 git commands to generate.