yosys/tests/arch/common/mul.v

10 lines
109 B
Coq
Raw Normal View History

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