10 lines
102 B
Verilog
10 lines
102 B
Verilog
module hello(
|
|
input wire A, B,
|
|
output wire C, D
|
|
);
|
|
|
|
and(D, A, B);
|
|
xor(C, A, B);
|
|
|
|
endmodule
|