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