binutils-gdb/sim/testsuite/cr16/loadmp.cgs
Mike Frysinger 1368b914e9 sim: testsuite: flatten tree
Now that all port tests live under testsuite/sim/*/, and none live
in testsuite/ directly, flatten the structure by moving all of the
dirs under testsuite/sim/ to testsuite/ directly.

We need to stop passing --tool to dejagnu so that it searches all
dirs and not just ones that start with "sim".  Since we have no
other dirs in this tree, and no plans to add any, should be fine.
2021-01-15 19:18:34 -05:00

41 lines
451 B
Plaintext

# cr16 testcase for loadmp count
# mach(): cr16
.include "testutils.inc"
start
.global loadmp
loadmp:
movd $0x1000, (r1,r0)
movw $0x12, r2
storw r2, 0x1000
movw $0x34, r3
storw r3, 0x1002
movw $0x56, r4
storw r4, 0x1004
movw $0x78, r5
storw r5, 0x1006
loadmp $4
cmpw $0x12,r2
beq ok1
not_ok:
fail
ok1:
cmpw $0x34,r3
beq ok2
br not_ok
ok2:
cmpw $0x56,r4
beq ok3
br not_ok
ok3:
cmpw $0x78,r5
beq ok4
br not_ok
ok4:
pass