1
2
3
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
34
35
36
/* ... */
#ifndef OPENOCD_SVF_SVF_H
#define OPENOCD_SVF_SVF_H
#include <jtag/jtag.h>
int svf_register_commands(struct command_context *cmd_ctx);
/* ... */
int svf_add_statemove(tap_state_t goal_state);
/* ... */
bool svf_tap_state_is_stable(tap_state_t state);
/* ... */
#endif