verilog/hello.v
2024-04-13 05:48:55 +03:00

10 lines
93 B
Verilog

module hello(
input wire A, B,
output wire C, D
);
and(D, A, B);
xor(C, A, B);
endmodule