blob: 94c903ff3c40de9d67ddfadd9a38c381ca8cd690 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// SPDX-License-Identifier: Apache-2.0
module LargeParamUnsigned #(parameter DATA=0, WIDTH=1) (
output [WIDTH-1:0] out
);
assign out = DATA;
endmodule
module LargeParamSigned #(parameter DATA=0, WIDTH=1) (
output signed [WIDTH-1:0] out
);
assign out = DATA;
endmodule
|