21 lines
244 B
Text
21 lines
244 B
Text
# cr16 testcase for cmpb $imm4, reg
|
|
# mach(): cr16
|
|
|
|
.include "testutils.inc"
|
|
|
|
start
|
|
|
|
.global cmpb_i
|
|
cmpb_i:
|
|
mvi_h_condbit 0
|
|
movw $0x2311, r4
|
|
cmpb $0x4211, r4
|
|
beq ok
|
|
not_ok:
|
|
fail
|
|
ok:
|
|
mvi_h_condbit 1
|
|
cmpb $0x4222,r4
|
|
beq not_ok
|
|
|
|
pass
|