summaryrefslogtreecommitdiff
path: root/tests/simple/arraycells.v
blob: ad5098000eefb79428aef2536d5e7296a3325311 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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