verilog/tests/hello.v
2024-12-01 02:01:08 +03:00

10 lines
102 B
Verilog

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