1# cr16 testcase for movw $imm16, reg 2# mach(): cr16 3 4 .include "testutils.inc" 5 6 start 7 8 .global movw 9movw: 10 movw $0x1234, r4 11 12 movw r4, r5 13 14 test_h_gr r5, 0x1234 15 16 pass 17