diff options
author | William D. Jones <thor0505@comcast.net> | 2021-02-22 21:52:39 -0500 |
---|---|---|
committer | William D. Jones <thor0505@comcast.net> | 2021-07-01 09:36:00 -0400 |
commit | b1f25d4b33a40666a2f483ee3875074c65c2ac68 (patch) | |
tree | 2268fa020e9ae925bb9d46a871f7dcaab5ccb176 | |
parent | 86bc708299be1bdaf964c42ebb28dc51d91b75c5 (diff) | |
download | nextpnr-b1f25d4b33a40666a2f483ee3875074c65c2ac68.tar.gz nextpnr-b1f25d4b33a40666a2f483ee3875074c65c2ac68.tar.bz2 nextpnr-b1f25d4b33a40666a2f483ee3875074c65c2ac68.zip |
machxo2: Set Pip and Wire delays to reasonable fake values mirroring
estimateDelay.
-rw-r--r-- | machxo2/arch.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/machxo2/arch.h b/machxo2/arch.h index cdbbe2b2..f5ccb4f6 100644 --- a/machxo2/arch.h +++ b/machxo2/arch.h @@ -514,7 +514,7 @@ struct Arch : BaseArch<ArchRanges> return IdStringList(ids); } - DelayQuad getWireDelay(WireId wire) const override { return DelayQuad(0); } + DelayQuad getWireDelay(WireId wire) const override { return DelayQuad(0.01); } WireRange getWires() const override { @@ -587,7 +587,7 @@ struct Arch : BaseArch<ArchRanges> return wire; } - DelayQuad getPipDelay(PipId pip) const override { return DelayQuad(0); } + DelayQuad getPipDelay(PipId pip) const override { return DelayQuad(0.01); } PipRange getPipsDownhill(WireId wire) const override { |