yosys/manual/PRESENTATION_ExAdv/mymul_test.v

5 lines
83 B
Coq
Raw Normal View History

2014-02-16 10:56:19 -06:00
module test(A, B, Y);
input [1:0] A, B;
output [1:0] Y = A * B;
endmodule