mirror of
https://github.com/YosysHQ/nextpnr.git
synced 2026-04-27 12:38:40 +00:00
Fix getDelayFromNS()
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user