summaryrefslogtreecommitdiff
path: root/sim/testsuite/cris/asm/movum.ms
blob: c6ea625fd749dda51ff9782d77449e1ddd295209 (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
# mach: crisv3 crisv8 crisv10 crisv32
# output: 5\nf5\n5\nfff5\n0\n

; Movu between registers.  Check that zero-extension is performed and the
; full register is set.

 .include "testutils.inc"

 .data
x:
 .byte 5,-11
 .word 5,-11
 .word 0

 start
 move.d x,r5

 movu.b [r5+],r3
 test_move_cc 0 0 0 0
 dumpr3

 movu.b [r5],r3
 test_move_cc 0 0 0 0
 addq 1,r5
 dumpr3

 movu.w [r5+],r3
 test_move_cc 0 0 0 0
 dumpr3

 movu.w [r5],r3
 test_move_cc 0 0 0 0
 addq 2,r5
 dumpr3

 movu.w [r5],r3
 test_move_cc 0 1 0 0
 dumpr3

 quit