mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-01 05:55:23 +08:00
1368b914e9
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.
36 lines
413 B
Plaintext
36 lines
413 B
Plaintext
# cr16 testcase for cbitb $bit_pos, ABS/REGP/REG
|
|
# mach: cr16
|
|
|
|
.include "testutils.inc"
|
|
|
|
start
|
|
|
|
.global cbitb
|
|
cbitb:
|
|
cbitb $0,_y
|
|
loadw _y, r1
|
|
cmpb $0xfe, r1
|
|
beq ok1
|
|
not_ok:
|
|
fail
|
|
|
|
ok1:
|
|
movd $_y, (r1,r0)
|
|
cbitb $1,0(r1,r0)
|
|
loadw _y, r1
|
|
cmpb $0xfc, r1
|
|
beq ok2
|
|
br not_ok
|
|
ok2:
|
|
|
|
movw $_y, r1
|
|
cbitb $2,0(r1)
|
|
loadw _y, r1
|
|
cmpb $0xf8, r1
|
|
beq ok3
|
|
br not_ok
|
|
ok3:
|
|
pass
|
|
|
|
_y: .word 0xff
|