yosys/tests/arch/common/mul.v

10 lines
109 B
Coq
Raw Normal View History

2019-09-03 03:53:37 -05:00
module top
(
2019-10-18 05:50:24 -05:00
input [5:0] x,
input [5:0] y,
2019-09-03 03:53:37 -05:00
2019-10-18 05:50:24 -05:00
output [11:0] A,
);
assign A = x * y;
2019-09-03 03:53:37 -05:00
endmodule