verilog/tests/hello.v
2024-07-05 19:15:16 +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