aboutsummaryrefslogtreecommitdiffstats
path: root/ecp5
diff options
context:
space:
mode:
authorDavid Shah <dave@ds0.me>2018-11-16 10:16:25 +0000
committerDavid Shah <dave@ds0.me>2018-11-16 13:26:28 +0000
commitffe1166e3348392a863662b04dd1e244b14647c4 (patch)
treed83bb3bd95648e9511815508af6dcc779f7addb8 /ecp5
parent2024346f4dc202da9863c1a76d06fe74e9e03055 (diff)
downloadnextpnr-ffe1166e3348392a863662b04dd1e244b14647c4.tar.gz
nextpnr-ffe1166e3348392a863662b04dd1e244b14647c4.tar.bz2
nextpnr-ffe1166e3348392a863662b04dd1e244b14647c4.zip
ecp5: Post-rebase fix
Signed-off-by: David Shah <dave@ds0.me>
Diffstat (limited to 'ecp5')
-rw-r--r--ecp5/arch.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/ecp5/arch.cc b/ecp5/arch.cc
index db78b5e5..25229f26 100644
--- a/ecp5/arch.cc
+++ b/ecp5/arch.cc
@@ -710,10 +710,10 @@ TimingClockingInfo Arch::getPortClockingInfo(const CellInfo *cell, IdString port
else if (prefix == "CH1_FF_RX")
info.clock_port = id_CH1_FF_RXI_CLK;
if (cell->ports.at(port).type == PORT_OUT) {
- info.clockToQ.delay = 660;
+ info.clockToQ = getDelayFromNS(0.7);
} else {
- info.setup.delay = 1000;
- info.hold.delay = 0;
+ info.setup = getDelayFromNS(1);
+ info.hold = getDelayFromNS(0);
}
}
return info;