aboutsummaryrefslogtreecommitdiffstats
path: root/machxo2/arch.h
diff options
context:
space:
mode:
authorWilliam D. Jones <thor0505@comcast.net>2021-01-30 12:39:57 -0500
committergatecat <gatecat@ds0.me>2021-02-12 10:36:59 +0000
commite1f72318e0b126de119cbc5e7f7b143e7beadd09 (patch)
treecea0468a80fa6271913e3a7e108cd02a08004cb2 /machxo2/arch.h
parent447b3a060c791b926e954e8e36e63aba718fbeb6 (diff)
downloadnextpnr-e1f72318e0b126de119cbc5e7f7b143e7beadd09.tar.gz
nextpnr-e1f72318e0b126de119cbc5e7f7b143e7beadd09.tar.bz2
nextpnr-e1f72318e0b126de119cbc5e7f7b143e7beadd09.zip
machxo2: Tweak A-star parameters for acceptable performance.
Diffstat (limited to 'machxo2/arch.h')
-rw-r--r--machxo2/arch.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/machxo2/arch.h b/machxo2/arch.h
index a438424f..8fdb63fc 100644
--- a/machxo2/arch.h
+++ b/machxo2/arch.h
@@ -850,7 +850,14 @@ struct Arch : BaseCtx
return wire;
}
- DelayInfo getPipDelay(PipId pip) const { return DelayInfo(); }
+ DelayInfo getPipDelay(PipId pip) const
+ {
+ DelayInfo delay;
+
+ delay.delay = 0.01;
+
+ return delay;
+ }
PipRange getPipsDownhill(WireId wire) const
{