From e642e21f9bb6ba05b62458e29c04c4e64287ecdc Mon Sep 17 00:00:00 2001 From: Lofty Date: Wed, 25 Jun 2025 17:46:19 +0100 Subject: [PATCH] himbaechel: output normalised wire in getWireByName (#1506) --- himbaechel/arch.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/himbaechel/arch.cc b/himbaechel/arch.cc index 9803a643..b473114a 100644 --- a/himbaechel/arch.cc +++ b/himbaechel/arch.cc @@ -273,7 +273,7 @@ WireId Arch::getWireByName(IdStringList name) const const auto &tdata = chip_tile_info(chip_info, tile); for (int wire = 0; wire < tdata.wires.ssize(); wire++) { if (IdString(tdata.wires[wire].name) == name[1]) - return WireId(tile, wire); + return normalise_wire(tile, wire); } return WireId(); }