zy1000 1.49 snapshot

git-svn-id: svn://svn.berlios.de/openocd/trunk@1374 b42882b7-edfa-0310-969c-e2dbd0fdcd60
This commit is contained in:
oharboe 2009-02-17 11:54:30 +00:00
parent 3fb2c6a6dd
commit 2136238908
2 changed files with 8 additions and 8 deletions

View File

@ -303,3 +303,11 @@ add_help_text srst_deasserted "Overridable procedure run when srst deassert is d
proc srst_asserted {} {
puts "Sensed nSRST asserted."
}
# catch any exceptions, capture output and return output
proc capture_catch {a} {
catch {
capture {uplevel $a}
} result
return $result
}

View File

@ -99,14 +99,6 @@ proc encode {a} {
return [string map {\n <br/> { } {&nbsp;} \t {&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;} > &gt; < &lt; / &#47;} $a]
}
# catch any exceptions, capture output and return it
proc capture_catch {a} {
catch {
capture {uplevel $a}
} result
return $result
}
proc first_flash_base {} {
set t [lindex 0 [ocd_flash_banks]]
return $t(base)