diff options
Diffstat (limited to 'tests/simple/arraycells.v')
-rw-r--r-- | tests/simple/arraycells.v | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/simple/arraycells.v b/tests/simple/arraycells.v new file mode 100644 index 000000000..704ca3fda --- /dev/null +++ b/tests/simple/arraycells.v @@ -0,0 +1,15 @@ + +module array_test001(a, b, c, y); + input a; + input [31:0] b, c; + input [31:0] y; + + aoi12 p [31:0] (a, b, c, y); +endmodule + +module aoi12(a, b, c, y); + input a, b, c; + output y; + assign y = ~((a & b) | c); +endmodule + |