aboutsummaryrefslogtreecommitdiffstats
path: root/tests/ecp5/mul.v
blob: d5b48b1d7721790eeb2028641875cdf0115a2b0b (plain)
1
2
3
4
5
6
7
8
9
10
11
module top
(
 input [5:0] x,
 input [5:0] y,

 output [11:0] A,
 );

assign A =  x * y;

endmodule