diff options
Diffstat (limited to 'machxo2')
-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 { |