Split main jtag.c file into two layers:
authorzwelch <zwelch@b42882b7-edfa-0310-969c-e2dbd0fdcd60>
Tue, 9 Jun 2009 04:15:13 +0000 (04:15 +0000)
committerzwelch <zwelch@b42882b7-edfa-0310-969c-e2dbd0fdcd60>
Tue, 9 Jun 2009 04:15:13 +0000 (04:15 +0000)
commit66707c94d7a34e99d77a032223e42909005a563e
tree0f88c7136674b23d511878a84740d6f9ffeec7a6
parent03b2b345ed8d5d9a6dfd7c31ccc63a77d5a05122
Split main jtag.c file into two layers:
- src/jtag/core.c: contains the low-level JTAG TAP and scanning routines.
- src/jtag/tcl.c: contains high-level JTAG TCL commands that use the core.
- Remove static keywords from routines in core.c, extern from tcl.c:
  - jtag, jtag_interface global variables
  - jtag_{examine,validate}_chain and jtag_tap_{init,free} functions
- Added myself to the copyright header in both of these files.
- Used 'svn cp' to add files, so versioning was preserved for both.

git-svn-id: svn://svn.berlios.de/openocd/trunk@2149 b42882b7-edfa-0310-969c-e2dbd0fdcd60
src/jtag/Makefile.am
src/jtag/core.c [new file with mode: 0644]
src/jtag/jtag.c [deleted file]
src/jtag/tcl.c [new file with mode: 0644]