From 26e11044db5d086a00aa1e5313b1cc45d83c09e7 Mon Sep 17 00:00:00 2001 From: Gabriel Wicki Date: Tue, 31 Mar 2026 22:28:10 +0200 Subject: [PATCH] compiler: multibank: Fix syntax error. * compiler/modules/multibank.py (multibank) [compute_sizes]: Fix syntax error. --- compiler/modules/multibank.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/modules/multibank.py b/compiler/modules/multibank.py index efe65797..4de46588 100644 --- a/compiler/modules/multibank.py +++ b/compiler/modules/multibank.py @@ -160,7 +160,7 @@ class multibank(design): self.central_bus_width = self.m2_pitch * self.num_control_lines + 2*self.m2_width # A space for wells or jogging m2 - self.m2_gap = max(2*drc("pwell_to_nwell"] + drc["well_enclose_active"), + self.m2_gap = max(2*drc("pwell_to_nwell") + drc("well_enclose_active"), 2*self.m2_pitch)