1# cr16 testcase for mulw reg reg
2# mach(): cr16
3
4 .include "testutils.inc"
5
6 start
7
8 .global mulw
9mulw:
10 movw $0x1234,r4
11 movw $0x1234,r5
12
13 mulw r4, r5
14 cmpw $0x5a90, r5
15 beq ok1
16not_ok:
17 fail
18
19ok1:
20 mulw $0x1234, r4
21 test_h_gr r4, 0x5a90
22
23 pass
24