diff options
author | Andrew Zonenberg <azonenberg@drawersteak.com> | 2017-01-05 06:05:58 -0800 |
---|---|---|
committer | Andrew Zonenberg <azonenberg@drawersteak.com> | 2017-01-05 06:05:58 -0800 |
commit | ac90de73becaeac034b226def9c387645698c363 (patch) | |
tree | c1ceac5fd4994ab583eb0221ec4518b1000e5f91 /tests | |
parent | babd8dc5b1790533f4f6674724524223c7ae48f4 (diff) | |
parent | 2d32c6c4f61052254df32bc7942e4339dd59acaa (diff) | |
download | yosys-ac90de73becaeac034b226def9c387645698c363.tar.gz yosys-ac90de73becaeac034b226def9c387645698c363.tar.bz2 yosys-ac90de73becaeac034b226def9c387645698c363.zip |
Merge https://github.com/cliffordwolf/yosys
Diffstat (limited to 'tests')
-rw-r--r-- | tests/simple/arraycells.v | 2 |
1 files changed, 1 insertions, 1 deletions
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 |