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

import spike64  # pylint: disable=import-error

class spike64_2(targets.Target):
    harts = [spike64.spike64_hart(), spike64.spike64_hart()]
    openocd_config_path = "spike-2-hwthread.cfg"
    timeout_sec = 5
    implements_custom_test = True

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