vivado 2025.2.1 compatibility: add SW_CRC field to bitstream parser
This commit is contained in:
parent
b9486b099e
commit
4331cb74c7
|
|
@ -109,6 +109,8 @@ int BitParser::parseHeader()
|
||||||
_hdr["userId"] = value;
|
_hdr["userId"] = value;
|
||||||
} else if (key == "Version") {
|
} else if (key == "Version") {
|
||||||
_hdr["version"] = value;
|
_hdr["version"] = value;
|
||||||
|
} else if (key == "SW_CRC") {
|
||||||
|
_hdr["crc"] = value;
|
||||||
} else {
|
} else {
|
||||||
printError("Unknown key " + key);
|
printError("Unknown key " + key);
|
||||||
return -1;
|
return -1;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue