Test debugging with/without a program buffer
[riscv-tests.git] / debug / targets / RISC-V / spike64.py
index 9c37f877e544f3d081e8d6b0578ed3125728ad45..d5802b5714c9e7443ec3e09151e981a95b917bc3 100644 (file)
@@ -11,8 +11,9 @@ class spike64_hart(targets.Hart):
 
 class spike64(targets.Target):
     harts = [spike64_hart()]
-    openocd_config_path = "spike.cfg"
+    openocd_config_path = "spike-1.cfg"
     timeout_sec = 30
 
     def create(self):
-        return testlib.Spike(self)
+        # 32-bit FPRs only
+        return testlib.Spike(self, isa="RV64IMAFC", progbufsize=0)