From: Clifford Wolf Date: Wed, 4 Jan 2017 11:39:01 +0000 (+0100) Subject: Fixed typo in tests/simple/arraycells.v X-Git-Tag: yosys-0.8~543 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=080004b19a035d2398d8defa3f3e207137801827;p=yosys.git Fixed typo in tests/simple/arraycells.v --- diff --git a/tests/simple/arraycells.v b/tests/simple/arraycells.v index 704ca3fda..fd85a1195 100644 --- a/tests/simple/arraycells.v +++ b/tests/simple/arraycells.v @@ -2,7 +2,7 @@ module array_test001(a, b, c, y); input a; input [31:0] b, c; - input [31:0] y; + output [31:0] y; aoi12 p [31:0] (a, b, c, y); endmodule