blob: 49af85db8749aceb6bc389ae927b8a5cef220494 [file] [log] [blame]
module testmodule (a,b,c);
input [31:0] a;
input [31:0] b;
output [31:0] c;
assign c = a & b;
endmodule