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