1
0
mirror of https://github.com/YosysHQ/nextpnr.git synced 2026-04-27 12:38:40 +00:00

Fix getDelayFromNS()

This commit is contained in:
Eddie Hung
2018-11-20 15:00:09 -08:00
parent ab9cb99f52
commit c3dc8696eb

View File

@@ -898,7 +898,7 @@ struct Arch : BaseCtx
DelayInfo getDelayFromNS(float ns) const
{
DelayInfo del;
del.delay = ns;
del.delay = delay_t(ns * 1000);
return del;
}