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

class spike64(targets.Target):
    xlen = 64
    ram = 0x1212340000
    ram_size = 0x10000000
    instruction_hardware_breakpoint_count = 4
    reset_vector = 0x1000

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