Fixed typo in tests/simple/arraycells.v
authorClifford Wolf <clifford@clifford.at>
Wed, 4 Jan 2017 11:39:01 +0000 (12:39 +0100)
committerClifford Wolf <clifford@clifford.at>
Wed, 4 Jan 2017 11:39:01 +0000 (12:39 +0100)
tests/simple/arraycells.v

index 704ca3fdab83226642b0d5658ed34aeab091284a..fd85a1195d834900f16bcabee250af6a739c695f 100644 (file)
@@ -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