mirror of
https://github.com/trabucayre/openFPGALoader.git
synced 2026-08-30 01:48:50 +02:00
svf_jtag: add verbose parameter
This commit is contained in:
+1
-1
@@ -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"]),
|
||||
_run_state(fsm_state["IDLE"]), _end_state(fsm_state["IDLE"])
|
||||
|
||||
|
||||
+1
-1
@@ -7,7 +7,7 @@ using namespace std;
|
||||
|
||||
class SVF_jtag {
|
||||
public:
|
||||
SVF_jtag(FtdiJtag *jtag);
|
||||
SVF_jtag(FtdiJtag *jtag, bool verbose);
|
||||
~SVF_jtag();
|
||||
void parse(string filename);
|
||||
void setVerbose(bool verbose) {_verbose = verbose;}
|
||||
|
||||
Reference in New Issue
Block a user