1
0
mirror of https://github.com/YosysHQ/nextpnr.git synced 2026-02-16 04:43:16 +00:00

Use L2T4 for constant drivers

This commit is contained in:
Miodrag Milanovic
2025-06-21 09:52:23 +02:00
parent b75b0cc562
commit 271c9f5b97

View File

@@ -570,7 +570,7 @@ void GateMatePacker::pack_constants()
const dict<IdString, Property> vcc_params = {{id_INIT_L10, Property(0b1111, 4)}};
const dict<IdString, Property> gnd_params = {{id_INIT_L10, Property(0b0000, 4)}};
h.replace_constants(CellTypePort(id_CPE_LT, id_OUT), CellTypePort(id_CPE_LT, id_OUT), vcc_params, gnd_params);
h.replace_constants(CellTypePort(id_CPE_L2T4, id_OUT), CellTypePort(id_CPE_L2T4, id_OUT), vcc_params, gnd_params);
}
void GateMatePacker::remove_constants()