This commit is contained in:
Eddie Hung 2019-09-11 14:17:45 -07:00
parent 690b1a064d
commit 63431fe42a
1 changed files with 2 additions and 2 deletions

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();