diff options
author | David Shah <davey1576@gmail.com> | 2018-08-19 17:11:34 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-19 17:11:34 +0100 |
commit | 0f86d082e50eddd366a3ffc4524a6a7111bb8d30 (patch) | |
tree | 64a50c4946cda129e6064288b082ffbdeb62747b /ecp5/arch.h | |
parent | 91c60ac66715de07c6980e753bbb906b0cf15a29 (diff) | |
parent | 1b3a201a54d36085a0675ebaebda523645ad45b3 (diff) | |
download | nextpnr-0f86d082e50eddd366a3ffc4524a6a7111bb8d30.tar.gz nextpnr-0f86d082e50eddd366a3ffc4524a6a7111bb8d30.tar.bz2 nextpnr-0f86d082e50eddd366a3ffc4524a6a7111bb8d30.zip |
Merge pull request #59 from daveshah1/ecp5_timing
Simple timing model for ECP5
Diffstat (limited to 'ecp5/arch.h')
-rw-r--r-- | ecp5/arch.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ecp5/arch.h b/ecp5/arch.h index 712c6e0a..da86d4e2 100644 --- a/ecp5/arch.h +++ b/ecp5/arch.h @@ -745,7 +745,7 @@ struct Arch : BaseCtx { DelayInfo delay; NPNR_ASSERT(pip != PipId()); - delay.delay = locInfo(pip)->pip_data[pip.index].delay * 100; + delay.delay = locInfo(pip)->pip_data[pip.index].delay; return delay; } |