3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-11 03:33:36 +00:00

Eliminate warnings by sizing O correctly

This commit is contained in:
Eddie Hung 2019-07-23 15:13:30 -07:00
parent 151c5c96c0
commit 79fd6edc5a

View file

@ -144,7 +144,11 @@ void create_ice40_dsp(ice40_dsp_pm &pm)
// SB_MAC16 Output Interface
cell->setPort("\\O", st.sigO);
SigSpec O = st.sigO;
if (GetSize(O) < 32)
O.append(pm.module->addWire(NEW_ID, 32-GetSize(O)));
cell->setPort("\\O", O);
bool accum = false;
if (st.addAB) {