3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-07 18:05:24 +00:00

Use new port() overload once more

This commit is contained in:
Eddie Hung 2019-09-23 13:00:44 -07:00
parent bcee87a457
commit a67af3d5e5

View file

@ -38,8 +38,8 @@ code sigA sigB sigC sigD sigM
sigA = unextend(port(dsp, \A));
sigB = unextend(port(dsp, \B));
sigC = dsp->connections_.at(\C, SigSpec());
sigD = dsp->connections_.at(\D, SigSpec());
sigC = port(dsp, \C, SigSpec());
sigD = port(dsp, \D, SigSpec());
SigSpec P = port(dsp, \P);
if (param(dsp, \USE_MULT, Const("MULTIPLY")).decode_string() == "MULTIPLY") {