added jtag_add_statemove() helper fn(actual fn written by Dick Hollonbeck, I just moved it).

git-svn-id: svn://svn.berlios.de/openocd/trunk@1980 b42882b7-edfa-0310-969c-e2dbd0fdcd60
This commit is contained in:
oharboe
2009-06-01 19:58:20 +00:00
parent 414245c9ce
commit 7662bbeaa5
3 changed files with 106 additions and 94 deletions

View File

@@ -894,4 +894,14 @@ static __inline__ void jtag_add_dr_out(jtag_tap_t* tap, int num_fields, const in
}
/**
* Function jtag_add_statemove
* moves from the current state to the goal \a state. This needs
* to be handled according to the xsvf spec, see the XSTATE command
* description.
*/
extern int jtag_add_statemove(tap_state_t goal_state);
#endif /* JTAG_H */