aboutsummaryrefslogtreecommitdiff
path: root/debug/targets/SiFive/Freedom/E300.py
blob: 4062e3d9b44416fb0a4cd65bc79dd1b3f4e69b6e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import targets

class E300Hart(targets.Hart):
    xlen = 32
    ram = 0x80000000
    ram_size = 64 * 1024
    instruction_hardware_breakpoint_count = 2
    link_script_path = "Freedom.lds"

class E300(targets.Target):
    openocd_config_path = "Freedom.cfg"
    harts = [E300Hart()]
    uses_dtm_version_013 = True