2019-10-19 22:22:39 +02:00
|
|
|
module top;
|
2019-10-20 21:58:37 +02:00
|
|
|
localparam MULTIPLIER_1 = 7;
|
|
|
|
|
localparam MULTIPLIER_2 = 8;
|
|
|
|
|
function integer bar_1;
|
2019-10-19 22:22:39 +02:00
|
|
|
input integer x;
|
2019-10-20 21:58:37 +02:00
|
|
|
bar_1 = x * x * MULTIPLIER_1;
|
2019-10-19 22:22:39 +02:00
|
|
|
endfunction
|
2019-10-20 21:58:37 +02:00
|
|
|
function integer bar_2;
|
|
|
|
|
input integer x;
|
|
|
|
|
bar_2 = x * x * MULTIPLIER_2;
|
|
|
|
|
endfunction
|
|
|
|
|
initial begin
|
|
|
|
|
$display(bar_1(3));
|
|
|
|
|
$display(bar_2(3));
|
|
|
|
|
end
|
2019-10-19 22:22:39 +02:00
|
|
|
endmodule
|