3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2026-07-19 21:55:48 +00:00

Merge branch 'YosysHQ:main' into main

This commit is contained in:
Akash Levy 2026-02-18 09:44:25 -08:00 committed by GitHub
commit b7098e8383
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 137 additions and 8 deletions

View file

@ -678,6 +678,7 @@ void parse_blif(RTLIL::Design *design, std::istream &f, IdString dff_name, bool
goto try_next_value;
}
}
log_assert(i < lutptr->size());
lutptr->set(i, !strcmp(output, "0") ? RTLIL::State::S0 : RTLIL::State::S1);
try_next_value:;
}