jedParser: honor verbose, suppress message in parse function and add userCode

This commit is contained in:
Gwenhael Goavec-Merou
2019-11-21 08:37:43 +01:00
parent 57178b4688
commit 32fc458eff
2 changed files with 41 additions and 23 deletions
+4 -1
View File
@@ -36,7 +36,7 @@ class JedParser: public ConfigBitstreamParser {
};
public:
JedParser(std::string filename);
JedParser(std::string filename, bool verbose = false);
int parse();
void display();
@@ -61,6 +61,9 @@ class JedParser: public ConfigBitstreamParser {
uint64_t _featuresRow;
uint16_t _feabits;
uint16_t _checksum;
uint32_t _userCode;
uint8_t _security_settings;
uint8_t _default_fuse_state;
};
#endif // JEDPARSER_HPP_