23 lines
247 B
Text
23 lines
247 B
Text
# cr16 testcase for mulw reg reg
|
|
# mach(): cr16
|
|
|
|
.include "testutils.inc"
|
|
|
|
start
|
|
|
|
.global mulw
|
|
mulw:
|
|
movw $0x1234,r4
|
|
movw $0x1234,r5
|
|
|
|
mulw r4, r5
|
|
cmpw $0x5a90, r5
|
|
beq ok1
|
|
not_ok:
|
|
fail
|
|
|
|
ok1:
|
|
mulw $0x1234, r4
|
|
test_h_gr r4, 0x5a90
|
|
|
|
pass
|