aboutsummaryrefslogtreecommitdiff
path: root/debug/targets/RISC-V/spike32-2-hwthread.py
blob: 333a7f25fe50f9940c16c49eedac34d1dc6f9d50 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import targets
import testlib

import spike32  # pylint: disable=import-error

class spike32_2(targets.Target):
    harts = [spike32.spike32_hart(), spike32.spike32_hart()]
    openocd_config_path = "spike-2-hwthread.cfg"
    timeout_sec = 5
    implements_custom_test = True
    support_hasel = False

    def create(self):
        return testlib.Spike(self, support_hasel=False)