aboutsummaryrefslogtreecommitdiff
path: root/debug/targets/RISC-V/spike32.py
diff options
context:
space:
mode:
Diffstat (limited to 'debug/targets/RISC-V/spike32.py')
-rw-r--r--debug/targets/RISC-V/spike32.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/debug/targets/RISC-V/spike32.py b/debug/targets/RISC-V/spike32.py
index 665d7e9..809463c 100644
--- a/debug/targets/RISC-V/spike32.py
+++ b/debug/targets/RISC-V/spike32.py
@@ -6,12 +6,12 @@ class spike32_hart(targets.Hart):
ram = 0x10000000
ram_size = 0x10000000
instruction_hardware_breakpoint_count = 4
- reset_vector = 0x1000
+ reset_vectors = [0x1000]
link_script_path = "spike32.lds"
class spike32(targets.Target):
harts = [spike32_hart()]
- openocd_config_path = "spike.cfg"
+ openocd_config_path = "spike-1.cfg"
timeout_sec = 30
def create(self):