aboutsummaryrefslogtreecommitdiff
path: root/debug/targets/RISC-V/spike32-2-hwthread.py
blob: c5fe92d63d843f87f94ca3005d36e1d12c6f8d9e (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

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