[#73220] fix wrong boolean causing NET not being written

This commit is contained in:
Mateusz Gancarz 2025-02-20 12:43:37 +01:00
parent 089ce142ce
commit 760d444466
1 changed files with 1 additions and 1 deletions

View File

@ -254,7 +254,7 @@ void VerilatedSaif::recursivelyPrintScopes(uint32_t scopeIndex) {
incrementIndent();
bool anyNetValid{true};
bool anyNetValid{false};
//NOTE: for now only care about NET, also PORT will be added
for (auto& [code, signalName] : saifScope.childSignals) {