23 lines
241 B
Text
23 lines
241 B
Text
# cr16 testcase for cmpi $imm16, reg
|
|
# mach(): cr16
|
|
|
|
.include "testutils.inc"
|
|
|
|
start
|
|
|
|
.global cmpi
|
|
cmpi:
|
|
mvi_h_condbit 0
|
|
movw $1, r4
|
|
cmpw $1, r4
|
|
beq ok
|
|
not_ok:
|
|
fail
|
|
ok:
|
|
mvi_h_condbit 1
|
|
movw $2, r4
|
|
cmpw $2, r4
|
|
bne not_ok
|
|
|
|
|
|
pass
|