1
0
mirror of synced 2026-05-02 22:34:25 +00:00
Files
YosysHQ.yosys/tests/arch/common/mul.v
Miodrag Milanovic 5603595e5c Share common tests
2019-10-18 12:19:59 +02:00

12 lines
99 B
Verilog

module top
(
input [5:0] x,
input [5:0] y,
output [11:0] A,
);
assign A = x * y;
endmodule