mirror of
https://github.com/trabucayre/openFPGALoader.git
synced 2026-08-30 18:02:38 +02:00
mcsParser: verbose mode
This commit is contained in:
+3
-2
@@ -41,8 +41,9 @@ using namespace std;
|
||||
#define TYPE_BASE 7
|
||||
#define DATA_BASE 9
|
||||
|
||||
McsParser::McsParser(string filename):
|
||||
ConfigBitstreamParser(filename, ConfigBitstreamParser::ASCII_MODE),
|
||||
McsParser::McsParser(string filename, bool verbose):
|
||||
ConfigBitstreamParser(filename, ConfigBitstreamParser::ASCII_MODE,
|
||||
verbose),
|
||||
_base_addr(0)
|
||||
{}
|
||||
|
||||
|
||||
+1
-1
@@ -22,7 +22,7 @@
|
||||
|
||||
class McsParser: public ConfigBitstreamParser {
|
||||
public:
|
||||
McsParser(std::string filename);
|
||||
McsParser(std::string filename, bool verbose);
|
||||
int parse();
|
||||
|
||||
private:
|
||||
|
||||
Reference in New Issue
Block a user