Merge pull request #82 from ucb-bar/fix-output-iocell

Fix direction of output enable in output io cell
This commit is contained in:
Abraham Gonzalez
2020-05-29 17:23:03 -07:00
committed by GitHub

View File

@@ -38,7 +38,7 @@ endmodule
module GenericDigitalOutIOCell(
output pad,
input o,
output oe
input oe
);
assign pad = oe ? o : 1'bz;