24 lines
241 B
Plaintext
24 lines
241 B
Plaintext
|
# 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
|