3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-08 10:25:19 +00:00
This commit is contained in:
Eddie Hung 2019-09-11 14:17:45 -07:00
parent bdb5e0f29c
commit 817ac7c5e0

View file

@ -35,8 +35,8 @@ match cemux
endmatch
code
SigSpec &D = cemux->connections_.at(cemuxAB == \A ? \B : \A);
SigSpec &Q = dff->connections_.at(\Q);
SigSpec D = port(cemux, cemuxAB == \A ? \B : \A);
SigSpec Q = port(dff, \Q);
Const rst;
if (rstmux)
rst = port(rstmux, rstmuxBA).as_const();