svf_jtag: add verbose parameter
This commit is contained in:
parent
d936b09d77
commit
9cfe301b41
|
|
@ -231,7 +231,7 @@ void SVF_jtag::handle_instruction(vector<string> const &vstr)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
SVF_jtag::SVF_jtag(FtdiJtag *jtag):_verbose(false), _freq_hz(0),
|
SVF_jtag::SVF_jtag(FtdiJtag *jtag, bool verbose):_verbose(verbose), _freq_hz(0),
|
||||||
_enddr(fsm_state["IDLE"]), _endir(fsm_state["IDLE"]),
|
_enddr(fsm_state["IDLE"]), _endir(fsm_state["IDLE"]),
|
||||||
_run_state(fsm_state["IDLE"]), _end_state(fsm_state["IDLE"])
|
_run_state(fsm_state["IDLE"]), _end_state(fsm_state["IDLE"])
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,7 @@ using namespace std;
|
||||||
|
|
||||||
class SVF_jtag {
|
class SVF_jtag {
|
||||||
public:
|
public:
|
||||||
SVF_jtag(FtdiJtag *jtag);
|
SVF_jtag(FtdiJtag *jtag, bool verbose);
|
||||||
~SVF_jtag();
|
~SVF_jtag();
|
||||||
void parse(string filename);
|
void parse(string filename);
|
||||||
void setVerbose(bool verbose) {_verbose = verbose;}
|
void setVerbose(bool verbose) {_verbose = verbose;}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue