1
0
mirror of https://github.com/YosysHQ/nextpnr.git synced 2026-05-03 22:58:26 +00:00

Rename getWireBelPin to getBelPinWire

Signed-off-by: Clifford Wolf <clifford@clifford.at>
This commit is contained in:
Clifford Wolf
2018-07-22 10:59:21 +02:00
parent c6e4ad3227
commit 62b66e0208
12 changed files with 26 additions and 26 deletions

View File

@@ -215,7 +215,7 @@ const std::vector<BelId> &Arch::getBelsByType(BelType type) const
BelType Arch::getBelType(BelId bel) const { return bels.at(bel).type; }
WireId Arch::getWireBelPin(BelId bel, PortPin pin) const { return bels.at(bel).pins.at(pin).wire; }
WireId Arch::getBelPinWire(BelId bel, PortPin pin) const { return bels.at(bel).pins.at(pin).wire; }
BelPin Arch::getBelPinUphill(WireId wire) const { return wires.at(wire).uphill_bel_pin; }