mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-15 04:31:49 +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.
26 lines
342 B
ArmAsm
26 lines
342 B
ArmAsm
# Blackfin testcase for SYSCFG register
|
|
# mach: bfin
|
|
|
|
.include "testutils.inc"
|
|
|
|
.macro syscfg_test val:req
|
|
imm32 R0, \val
|
|
R0 = SYSCFG;
|
|
SYSCFG = R0;
|
|
R1 = SYSCFG;
|
|
CC = R0 == R1;
|
|
IF !CC JUMP 1f;
|
|
.endm
|
|
|
|
start
|
|
|
|
syscfg_test 0
|
|
syscfg_test 1
|
|
syscfg_test -1
|
|
syscfg_test 0x12345678
|
|
# leave in sane state
|
|
syscfg_test 0x30
|
|
|
|
pass
|
|
1: fail
|