blob: 8b1b63840340a8c3c0c57ac32084b9394059ce9e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# cr16 testcase for movd $imm32, regp
# mach(): cr16
.include "testutils.inc"
start
.global movd
movd:
movd $0x12345678, (r4,r3)
movd (r4,r3), (r6,r5)
test_h_grp "(r6,r5)", 0x12345678
pass
|