1
0
mirror of https://github.com/YosysHQ/nextpnr.git synced 2026-01-13 15:27:37 +00:00

do not use diagonal pips

This commit is contained in:
Miodrag Milanovic 2025-09-08 18:14:09 +02:00
parent 0b9d7d7be2
commit 0c19b43501

View File

@ -299,6 +299,8 @@ bool GateMateImpl::checkPipAvail(PipId pip) const
return true; return true;
if (used_cpes[pip.tile]) if (used_cpes[pip.tile])
return false; return false;
if (extra_data.type != PipExtra::PIP_EXTRA_MUX || (extra_data.flags & MUX_DIAGONAL) == 0)
return false;
return true; return true;
} }