summaryrefslogtreecommitdiff
path: root/sim-scripts
diff options
context:
space:
mode:
authorAun-Ali Zaidi <admin@kodeit.net>2015-12-13 18:48:24 -0600
committerGedare Bloom <gedare@rtems.org>2015-12-13 22:07:39 -0500
commitfcd7e2207454036956ac46c59cd4509da949ab43 (patch)
tree5c6d4f9a28c015e518f9523c380b14ac515c86e0 /sim-scripts
parent22e1982b7fbe57fdcb0c3b1a3cbf13d5f8d2d8e5 (diff)
h8300: Remove h8sim references
updates #2453.
Diffstat (limited to 'sim-scripts')
-rw-r--r--sim-scripts/.gitignore2
-rw-r--r--sim-scripts/Makefile5
-rw-r--r--sim-scripts/README1
-rw-r--r--sim-scripts/h8sim.in26
4 files changed, 1 insertions, 33 deletions
diff --git a/sim-scripts/.gitignore b/sim-scripts/.gitignore
index 30df64f..6e6da37 100644
--- a/sim-scripts/.gitignore
+++ b/sim-scripts/.gitignore
@@ -23,8 +23,6 @@ gdbarmsim
gdbarmsim-gdb
gumstix
gumstix-gdb
-h8sim
-h8sim-gdb
jmr3904
jmr3904-gdb
leon2
diff --git a/sim-scripts/Makefile b/sim-scripts/Makefile
index da47201..2b63b70 100644
--- a/sim-scripts/Makefile
+++ b/sim-scripts/Makefile
@@ -1,5 +1,5 @@
INSTALL_DIR=../bin
-GDBSIM_SCRIPTS=bf537Stamp ezkit533 gdbarmsim h8sim jmr3904 lm32_evr \
+GDBSIM_SCRIPTS=bf537Stamp ezkit533 gdbarmsim jmr3904 lm32_evr \
m32csim m32rsim or1ksim psim sis erc32 leon2 leon3 simsh v850sim
SKYEYE_SCRIPTS=ant5206 bf537Stamp-skyeye csb337 csb350 csb360 edb7312 \
ezkit533-skyeye gumstix rtl22xx smdk2410 leon2-skyeye
@@ -118,9 +118,6 @@ ezkit533 ezkit533-gdb: gdb-sim-run.in gdb-sim.in ezkit533.in
gdbarmsim gdbarmsim-gdb: gdb-sim-run.in gdb-sim.in gdbarmsim.in
./mkrun yes ARM arm gdbarmsim
-h8sim h8sim-gdb: gdb-sim-run.in gdb-sim.in h8sim.in
- ./mkrun yes H8300 h8300 h8sim
-
jmr3904 jmr3904-gdb: gdb-sim-run.in gdb-sim.in jmr3904.in
./mkrun yes MIPS mipstx39 jmr3904
diff --git a/sim-scripts/README b/sim-scripts/README
index 3c6c8b2..839e69c 100644
--- a/sim-scripts/README
+++ b/sim-scripts/README
@@ -7,7 +7,6 @@ NOTES:
[1] The script name is intended to match the name of the BSP it will run
executables for. But there are a few scripts which can run multiple BSPs:
simsh -
- h8sim - h8sim, h8sxsim
[2] The BSPs ant5206, csb350, and csb360 do not run yet on Skyeye. This
is a known Skyeye issue being addressed.
diff --git a/sim-scripts/h8sim.in b/sim-scripts/h8sim.in
deleted file mode 100644
index 9e936b9..0000000
--- a/sim-scripts/h8sim.in
+++ /dev/null
@@ -1,26 +0,0 @@
-#
-# H8300/h8sim Support
-#
-
-runARGS()
-{
- echo ${1}
-}
-
-checkBSPFaults()
-{
- return 0
-}
-
-bspLimit()
-{
- testname=$1
- case ${testname} in
- *stackchk*)limit=5 ;;
- *fatal*) limit=1 ;;
- *minimum*) limit=1 ;;
- *psxtime*) limit=180 ;;
- *) limit=60 ;;
- esac
- echo ${limit}
-}