aboutsummaryrefslogtreecommitdiffstats
path: root/tests/arch/common/mul.v
blob: baed64fcdb01c2be30342d38538739ab9961f5a3 (plain)
1
2
3
4
5
6
7
8
9
10
module top
#(parameter X_WIDTH=6, Y_WIDTH=6, A_WIDTH=12)
(
    input [X_WIDTH-1:0] x,
    input [Y_WIDTH-1:0] y,

    output [A_WIDTH-1:0] A,
);
    assign A =  x * y;
endmodule