aboutsummaryrefslogtreecommitdiff
path: root/debug/targets/RISC-V/spike32-2-rtos.py
diff options
context:
space:
mode:
Diffstat (limited to 'debug/targets/RISC-V/spike32-2-rtos.py')
-rw-r--r--debug/targets/RISC-V/spike32-2-rtos.py20
1 files changed, 0 insertions, 20 deletions
diff --git a/debug/targets/RISC-V/spike32-2-rtos.py b/debug/targets/RISC-V/spike32-2-rtos.py
deleted file mode 100644
index 81029e8..0000000
--- a/debug/targets/RISC-V/spike32-2-rtos.py
+++ /dev/null
@@ -1,20 +0,0 @@
-import targets
-import testlib
-
-import spike32 # pylint: disable=import-error
-
-class spike32_2(targets.Target):
- harts = [spike32.spike32_hart(misa=0x40141129),
- spike32.spike32_hart(misa=0x40141129)]
- openocd_config_path = "spike-rtos.cfg"
- timeout_sec = 30
- implements_custom_test = True
- support_hasel = False
- test_semihosting = False
- support_manual_hwbp = False # not supported with `-rtos riscv`
- support_memory_sampling = False # not supported with `-rtos riscv`
-
- def create(self):
- return testlib.Spike(self, progbufsize=0, dmi_rti=4,
- support_hasel=False, support_abstract_csr=True,
- support_haltgroups=False)