Allow multiple reset vectors.
[riscv-tests.git] / debug / targets / RISC-V / spike32.py
index fc7d598c9ff4fc3c88883a84eb01b8a7e9bffd35..bcb58927bc0e55205dffa7997edbfafdf94c05f6 100644 (file)
@@ -6,8 +6,8 @@ class spike32_hart(targets.Hart):
     ram = 0x10000000
     ram_size = 0x10000000
     instruction_hardware_breakpoint_count = 4
-    reset_vector = 0x1000
-    link_script_path = "spike64.lds"
+    reset_vectors = [0x1000]
+    link_script_path = "spike32.lds"
 
 class spike32(targets.Target):
     harts = [spike32_hart()]