aboutsummaryrefslogtreecommitdiffstats
path: root/ice40/arch.cc
diff options
context:
space:
mode:
authorDavid Shah <davey1576@gmail.com>2018-08-08 15:07:41 +0200
committerDavid Shah <davey1576@gmail.com>2018-08-08 15:15:21 +0200
commitd173ddba367f7082f122df75dffb59577afaf0b4 (patch)
tree0ebf8ab3f6dfe467281b6ae2b09d5d181eca1e5a /ice40/arch.cc
parent787fe5661cedf42a55f6aeb285d164e6cdf56404 (diff)
downloadnextpnr-d173ddba367f7082f122df75dffb59577afaf0b4.tar.gz
nextpnr-d173ddba367f7082f122df75dffb59577afaf0b4.tar.bz2
nextpnr-d173ddba367f7082f122df75dffb59577afaf0b4.zip
timing: Debugging implementation of new timing API
Signed-off-by: David Shah <davey1576@gmail.com>
Diffstat (limited to 'ice40/arch.cc')
-rw-r--r--ice40/arch.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/ice40/arch.cc b/ice40/arch.cc
index bfab91a1..abce0aba 100644
--- a/ice40/arch.cc
+++ b/ice40/arch.cc
@@ -938,7 +938,7 @@ TimingPortClass Arch::getPortTimingClass(const CellInfo *cell, IdString port, Id
} else if (cell->type == id_sb_io) {
if (port == id("D_IN_0") || port == id("D_IN_1"))
return TMG_STARTPOINT;
- if (port == id("D_OUT_0") || port == id("D_OUT_1"))
+ if (port == id("D_OUT_0") || port == id("D_OUT_1") || port == id("OUTPUT_ENABLE"))
return TMG_ENDPOINT;
return TMG_IGNORE;
} else if (cell->type == id("ICESTORM_PLL")) {