aboutsummaryrefslogtreecommitdiffstats
path: root/ice40
diff options
context:
space:
mode:
authorSergiusz Bazanski <q3k@q3k.org>2018-07-20 18:35:42 +0100
committerSergiusz Bazanski <q3k@q3k.org>2018-07-20 18:35:42 +0100
commitbe14e161ae1963203e380bfbe02cfaeda828f838 (patch)
treeb91051aa24633418e2d41606311f955683641328 /ice40
parent0311a27a53922783363ab607ca8f3832980990c6 (diff)
downloadnextpnr-be14e161ae1963203e380bfbe02cfaeda828f838.tar.gz
nextpnr-be14e161ae1963203e380bfbe02cfaeda828f838.tar.bz2
nextpnr-be14e161ae1963203e380bfbe02cfaeda828f838.zip
Re-enable drawing Pips.
Diffstat (limited to 'ice40')
-rw-r--r--ice40/arch.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/ice40/arch.cc b/ice40/arch.cc
index 64a2a4be..e09f26be 100644
--- a/ice40/arch.cc
+++ b/ice40/arch.cc
@@ -484,9 +484,9 @@ DecalXY Arch::getWireDecal(WireId wire) const
DecalXY Arch::getPipDecal(PipId pip) const
{
DecalXY decalxy;
- // decalxy.decal.type = DecalId::TYPE_PIP;
- // decalxy.decal.index = pip.index;
- // decalxy.decal.active = pip_to_net.at(pip.index) != IdString();
+ decalxy.decal.type = DecalId::TYPE_PIP;
+ decalxy.decal.index = pip.index;
+ decalxy.decal.active = pip_to_net.at(pip.index) != IdString();
return decalxy;
};