aboutsummaryrefslogtreecommitdiff
path: root/debug/targets/SiFive/HiFive1.py
blob: 3cb508cd0e1e358797ce7f836ffc6fdcc5046ad7 (plain)
1
2
3
4
5
6
7
8
9
10
11
import targets

class HiFive1Hart(targets.Hart):
    xlen = 32
    ram = 0x80000000
    ram_size = 16 * 1024
    instruction_hardware_breakpoint_count = 2
    misa = 0x40001105

class HiFive1(targets.Target):
    harts = [HiFive1Hart()]