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

class spike32(targets.Target):
    xlen = 32
    ram = 0x10000000
    ram_size = 0x10000000
    instruction_hardware_breakpoint_count = 4
    reset_vector = 0x1000

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