aboutsummaryrefslogtreecommitdiff
path: root/debug/targets/RISC-V/spike64-2-rtos.py
blob: 8dee51a29a5a450e4f8c8b24d892c6869121957a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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 = 60
    implements_custom_test = True
    support_hasel = False

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