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

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

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