aboutsummaryrefslogtreecommitdiff
path: root/src/flash/startup.tcl
blob: 2c335d9f7b1e0a73dc915bb86873244f841c5448 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# Defines basic Tcl procs for OpenOCD flash module

# Show flash in human readable form
# This is an example of a human readable form of a low level fn
proc flash_banks {} {
	set i 0
	set result ""
	foreach {a} [ocd_flash banks] {
		if {$i > 0} {
			set result "$result\n"
		}
		set result [format "$result#%d: %s at 0x%08x, size 0x%08x, buswidth %d, chipwidth %d" $i $a(name) $a(base) $a(size) $a(bus_width) $a(chip_width)]
		set i [expr $i+1]
	}
	return $result
}