18 lines
310 B
C
18 lines
310 B
C
#ifndef _BS_INIT_H
|
|
#define _BS_INIT_H
|
|
|
|
#include "config/bs_defines.h"
|
|
|
|
typedef int (*command_call)(jtag_core *jc, int argc, char *argv[]);
|
|
|
|
typedef struct {
|
|
char *name;
|
|
command_call cmd_call;
|
|
} Command;
|
|
|
|
extern Command commands[];
|
|
|
|
jtag_core *bsexp_init(void);
|
|
void bsexp_deinit(jtag_core *jc);
|
|
|
|
#endif |