aboutsummaryrefslogtreecommitdiffstats
path: root/techlibs/nexus
diff options
context:
space:
mode:
authorPepijn de Vos <pepijndevos@gmail.com>2021-08-20 21:21:06 +0200
committerGitHub <noreply@github.com>2021-08-20 21:21:06 +0200
commitc2d358484fa5188be350ef1a8496f88b60d69ef7 (patch)
tree5b9c97a5a9b03629e2f035b6dcd1f9e4843271d2 /techlibs/nexus
parentc2866780d2ee82334649237f77a89900fa0de4bc (diff)
downloadyosys-c2d358484fa5188be350ef1a8496f88b60d69ef7.tar.gz
yosys-c2d358484fa5188be350ef1a8496f88b60d69ef7.tar.bz2
yosys-c2d358484fa5188be350ef1a8496f88b60d69ef7.zip
Gowin: deal with active-low tristate (#2971)
* deal with active-low tristate * remove empty port * update sim models * add expected lut1 to tests
Diffstat (limited to 'techlibs/nexus')
-rw-r--r--techlibs/nexus/cells_map.v2
1 files changed, 1 insertions, 1 deletions
diff --git a/techlibs/nexus/cells_map.v b/techlibs/nexus/cells_map.v
index 86911d7a0..1e53e4026 100644
--- a/techlibs/nexus/cells_map.v
+++ b/techlibs/nexus/cells_map.v
@@ -58,7 +58,7 @@ module \$__NX_TINOUTPAD (input I, OE, output O, inout B);
endmodule
module \$__NX_TOUTPAD (input I, OE, output O);
- OBZ _TECHMAP_REPLACE_ (.I(I), .O(), .T(~OE), .O(O));
+ OBZ _TECHMAP_REPLACE_ (.I(I), .T(~OE), .O(O));
endmodule
`ifndef NO_LUT