diff options
author | kc8apf <kc8apf@b42882b7-edfa-0310-969c-e2dbd0fdcd60> | 2009-02-03 05:59:17 +0000 |
---|---|---|
committer | kc8apf <kc8apf@b42882b7-edfa-0310-969c-e2dbd0fdcd60> | 2009-02-03 05:59:17 +0000 |
commit | ab9dfffdb5ecc2033d5d19c6e51c8b4fa10c9c9b (patch) | |
tree | cad49c3ed7dfa4771b68781d0d58e620bcfe9390 /tools | |
parent | 6c0e48248a78f772495b62c9a88eb6aff1b3d6a9 (diff) | |
download | riscv-openocd-ab9dfffdb5ecc2033d5d19c6e51c8b4fa10c9c9b.zip riscv-openocd-ab9dfffdb5ecc2033d5d19c6e51c8b4fa10c9c9b.tar.gz riscv-openocd-ab9dfffdb5ecc2033d5d19c6e51c8b4fa10c9c9b.tar.bz2 |
- Cable driver helper API courtesy of Dick Hollenbeck <dick@softplc.com>
- Formatting changes from uncrustify
git-svn-id: svn://svn.berlios.de/openocd/trunk@1366 b42882b7-edfa-0310-969c-e2dbd0fdcd60
Diffstat (limited to 'tools')
-rw-r--r-- | tools/xsvf_tools/svf2xsvf.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/xsvf_tools/svf2xsvf.py b/tools/xsvf_tools/svf2xsvf.py index bf2a120..113e0a6 100644 --- a/tools/xsvf_tools/svf2xsvf.py +++ b/tools/xsvf_tools/svf2xsvf.py @@ -704,6 +704,8 @@ try: nextTok() if tokVal != ';': raise ParseError( tokLn, tokVal, "Expecting ';' after TRST trst_mode") + if doCOMMENTs: + writeComment( output, tokLn, 'TRST %s' % trst_mode ) obuf = bytearray( 2 ) obuf[0] = XTRST obuf[1] = trst_mode_allowed.index( trst_mode ) # use the index as the binary argument to XTRST opcode |