From 4a7e58a9388971c96d7144f72a3692d1fbc6fdfd Mon Sep 17 00:00:00 2001 From: gatecat Date: Sat, 14 Oct 2023 09:40:41 +0200 Subject: [PATCH] static/ecp5: zero bel area for RAMW because it's a zero-area cell Signed-off-by: gatecat --- ecp5/arch.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ecp5/arch.cc b/ecp5/arch.cc index 5d46f881..8bf5db91 100644 --- a/ecp5/arch.cc +++ b/ecp5/arch.cc @@ -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);