mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-20 07:36:39 +00:00
Merge branch 'YosysHQ:master' into rtlworks/script-stack/issue/3594
This commit is contained in:
commit
84f03971b2
2
Makefile
2
Makefile
|
@ -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
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue