3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-27 02:45:52 +00:00

Merge pull request #4737 from povik/abc_new-design-boxes

Support `abc9_box` on ordinary modules in abc_new
This commit is contained in:
Martin Povišer 2024-12-10 20:07:56 +01:00 committed by GitHub
commit ea38fcca5e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 57 additions and 11 deletions

View file

@ -203,7 +203,6 @@ struct Xaiger2Frontend : public Frontend {
/* unused box_id = */ read_be32(*f);
auto box_seq = read_be32(*f);
log("box_seq=%d boxes.size=%d\n", box_seq, (int) boxes.size());
log_assert(box_seq < boxes.size());
auto [cell, def] = boxes[box_seq];