Fix tests to work in multi-gdb mode.
[riscv-tests.git] / debug / targets / RISC-V / spike64.py
index 6e3da896ef01b79a454893fe964def2da1c441ab..2cd67a5501c85148a97634ed969d76b6ae9aebe8 100644 (file)
@@ -6,12 +6,12 @@ class spike64_hart(targets.Hart):
     ram = 0x1212340000
     ram_size = 0x10000000
     instruction_hardware_breakpoint_count = 4
-    reset_vector = 0x1000
+    reset_vectors = [0x1000]
     link_script_path = "spike64.lds"
 
 class spike64(targets.Target):
     harts = [spike64_hart()]
-    openocd_config_path = "spike.cfg"
+    openocd_config_path = "spike-1.cfg"
     timeout_sec = 30
 
     def create(self):