diff options
Diffstat (limited to 'gowin')
-rw-r--r-- | gowin/arch.cc | 4 | ||||
-rw-r--r-- | gowin/arch.h | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/gowin/arch.cc b/gowin/arch.cc index 4d732680..0f080734 100644 --- a/gowin/arch.cc +++ b/gowin/arch.cc @@ -1909,9 +1909,9 @@ delay_t Arch::predictDelay(BelId src_bel, IdString src_pin, BelId dst_bel, IdStr bool Arch::getBudgetOverride(const NetInfo *net_info, const PortRef &sink, delay_t &budget) const { return false; } -ArcBounds Arch::getRouteBoundingBox(WireId src, WireId dst) const +BoundingBox Arch::getRouteBoundingBox(WireId src, WireId dst) const { - ArcBounds bb; + BoundingBox bb; int src_x = wires.at(src).x; int src_y = wires.at(src).y; diff --git a/gowin/arch.h b/gowin/arch.h index 3e614eba..8513d2da 100644 --- a/gowin/arch.h +++ b/gowin/arch.h @@ -447,7 +447,7 @@ struct Arch : BaseArch<ArchRanges> uint32_t getDelayChecksum(delay_t v) const override { return 0; } bool getBudgetOverride(const NetInfo *net_info, const PortRef &sink, delay_t &budget) const override; - ArcBounds getRouteBoundingBox(WireId src, WireId dst) const override; + BoundingBox getRouteBoundingBox(WireId src, WireId dst) const override; bool pack() override; bool place() override; |