aboutsummaryrefslogtreecommitdiff
path: root/debug/targets/RISC-V/spike64-2-rtos.py
blob: 1da7116d3e3757cecc9f99ca649ec2d9a67c4aea (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_rtos(targets.Target):
    harts = [spike64.spike64_hart(), spike64.spike64_hart()]
    openocd_config_path = "spike-rtos.cfg"
    timeout_sec = 60
    implements_custom_test = True

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