From fe7546fda5733c9787b7bd3201668577c24470cb Mon Sep 17 00:00:00 2001 From: Lofty Date: Sat, 2 Aug 2025 14:00:25 +0100 Subject: [PATCH] Multiplier routing needs priority over clocks --- himbaechel/uarch/gatemate/gatemate.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/himbaechel/uarch/gatemate/gatemate.cc b/himbaechel/uarch/gatemate/gatemate.cc index eb4b3d7d..ce278e67 100644 --- a/himbaechel/uarch/gatemate/gatemate.cc +++ b/himbaechel/uarch/gatemate/gatemate.cc @@ -187,8 +187,8 @@ void GateMateImpl::postPlace() { repack(); } void GateMateImpl::preRoute() { ctx->assignArchInfo(); - route_clock(); route_mult(); + route_clock(); } void GateMateImpl::postRoute()