summaryrefslogtreecommitdiff
path: root/tests/simple/arraycells.v
diff options
context:
space:
mode:
Diffstat (limited to 'tests/simple/arraycells.v')
-rw-r--r--tests/simple/arraycells.v15
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/simple/arraycells.v b/tests/simple/arraycells.v
new file mode 100644
index 00000000..ad509800
--- /dev/null
+++ b/tests/simple/arraycells.v
@@ -0,0 +1,15 @@
+
+module 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
+