21 lines
275 B
Text
21 lines
275 B
Text
# cr16 testcase for cmpb $imm32,(regp)
|
|
# mach(): cr16
|
|
|
|
.include "testutils.inc"
|
|
|
|
start
|
|
|
|
.global cmpd_i
|
|
cmpd_i:
|
|
mvi_h_condbit 0
|
|
movd $0x12345678, (r4,r3)
|
|
cmpd $0x12345678, (r4,r3)
|
|
beq ok
|
|
not_ok:
|
|
fail
|
|
ok:
|
|
mvi_h_condbit 1
|
|
cmpd $0x12341234, (r4,r3)
|
|
beq not_ok
|
|
|
|
pass
|