aboutsummaryrefslogtreecommitdiff
path: root/debug/targets/RISC-V/spike64-2-rtos.py
blob: d65d2abb24f80fd41b38051e8551a620574f9ce2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import targets
import testlib

import spike64  # pylint: disable=import-error

class spike64_2_rtos(targets.Target):
    harts = [spike64.spike64_hart(), spike64.spike64_hart()]
    openocd_config_path = "spike-rtos.cfg"
    timeout_sec = 30

    def create(self):
        return testlib.Spike(self)