3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-20 07:36:39 +00:00

Merge branch 'YosysHQ:master' into issue/2616

This commit is contained in:
Muthiah Annamalai (முத்து அண்ணாமலை) 2023-06-03 21:40:18 -07:00 committed by GitHub
commit 932cc67edf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 1 deletions

View file

@ -141,7 +141,7 @@ LDLIBS += -lrt
endif
endif
YOSYS_VER := 0.29+40
YOSYS_VER := 0.29+44
# Note: We arrange for .gitcommit to contain the (short) commit hash in
# tarballs generated with git-archive(1) using .gitattributes. The git repo

View file

@ -706,6 +706,9 @@ struct AigerWriter
for (auto &it : latch_lines)
f << it.second;
if (initstate_ff)
f << stringf("ninitff %d\n", ((initstate_ff >> 1)-1-aig_i));
wire_lines.sort();
for (auto &it : wire_lines)
f << it.second;