From 8d8053e0c5ec1c15e22d5d88ffd53034f4b92de5 Mon Sep 17 00:00:00 2001 From: gatecat Date: Tue, 4 Aug 2026 14:52:44 +0200 Subject: [PATCH] xilinx: Make router2 default Signed-off-by: gatecat --- himbaechel/uarch/xilinx/xilinx.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/himbaechel/uarch/xilinx/xilinx.h b/himbaechel/uarch/xilinx/xilinx.h index 973ee221..a904cfac 100644 --- a/himbaechel/uarch/xilinx/xilinx.h +++ b/himbaechel/uarch/xilinx/xilinx.h @@ -144,6 +144,8 @@ struct XilinxImpl : HimbaechelAPI void fixup_routing(); void route_clocks(); + virtual std::string getDefaultRouter() const override { return "router2"; }; + // Misc utility functions const XlnxTileInstExtraDataPOD *tile_extra_data(int tile) const; IdString bel_tile_type(BelId bel) const;