From b1f25d4b33a40666a2f483ee3875074c65c2ac68 Mon Sep 17 00:00:00 2001 From: "William D. Jones" Date: Mon, 22 Feb 2021 21:52:39 -0500 Subject: machxo2: Set Pip and Wire delays to reasonable fake values mirroring estimateDelay. --- machxo2/arch.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'machxo2') 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 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 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 { -- cgit v1.2.3