static/ecp5: zero bel area for RAMW because it's a zero-area cell

Signed-off-by: gatecat <gatecat@ds0.me>
This commit is contained in:
gatecat 2023-10-14 09:40:41 +02:00
parent 5a2eff2120
commit 4a7e58a938

View File

@ -595,7 +595,7 @@ void configure_static(Arch *arch, PlacerStaticCfg &cfg)
auto &comb = cfg.cell_groups.back();
comb.name = arch->id("COMB");
comb.bel_area[id_TRELLIS_COMB] = StaticRect(1.0f, 0.125f);
comb.bel_area[id_TRELLIS_RAMW] = StaticRect(1.0f, 0.125f);
comb.bel_area[id_TRELLIS_RAMW] = StaticRect(0.0f, 0.0f);
comb.cell_area[id_TRELLIS_COMB] = StaticRect(1.0f, 0.125f);
comb.cell_area[id_TRELLIS_RAMW] = StaticRect(1.0f, 0.125f);
comb.zero_area_cells.insert(id_TRELLIS_RAMW);