21 lines
249 B
Text
21 lines
249 B
Text
|
# m32r testcase for bne $src1,$src2,$disp16
|
||
|
# mach(): m32r m32rx
|
||
|
|
||
|
.include "testutils.inc"
|
||
|
|
||
|
start
|
||
|
|
||
|
.global bne
|
||
|
bne:
|
||
|
mvi_h_gr r4, 1
|
||
|
mvi_h_gr r5, 2
|
||
|
bne r4, r5, test0pass
|
||
|
test1fail:
|
||
|
fail
|
||
|
|
||
|
test0pass:
|
||
|
mvi_h_gr r4, 2
|
||
|
bne r4, r5, test1fail
|
||
|
|
||
|
pass
|