xsvf: Fix shadow issues on Mac
[fw/openocd] / src / jtag / startup.tcl
index 4e6d5fc181a15b9dc067cd793140c5bb3f933bcc..496fdc82e7707d035d2244ace05d7a712bfa69cb 100644 (file)
@@ -75,3 +75,15 @@ add_help_text srst_deasserted "Overridable procedure run when srst deassert is d
 proc srst_asserted {} {
        puts "Sensed nSRST asserted."
 }
+
+# BEGIN MIGRATION AIDS ...  these adapter operations originally had
+# JTAG-specific names despite the fact that the operations were not
+# specific to JTAG, or otherewise had troublesome/misleading names.
+#
+# FIXME phase these aids out after about April 2011
+#
+proc jtag_khz args { eval adapter_khz $args }
+proc jtag_nsrst_delay args { eval adapter_nsrst_delay $args }
+proc jtag_nsrst_assert_width args { eval adapter_nsrst_assert_width $args }
+
+# END MIGRATION AIDS