More outputs

D4VID 1 month ago
parent 0561673fc2
commit af7f1fe19a

@ -1,3 +1,7 @@
module gates(input a, input b, input c, output wire out); module gates(
input a,b,c,d,
output wire out, out2
);
assign out = a & b | c; assign out = a & b | c;
assign out2 = a & b ^ d;
endmodule endmodule

Loading…
Cancel
Save