4 lines
83 B
Coq
4 lines
83 B
Coq
module test(A, B, Y);
|
|
input [1:0] A, B;
|
|
output [1:0] Y = A * B;
|
|
endmodule
|