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

 output [15:0] A,
 );

assign A =  x * y;

endmodule