verilator/test_regress/t/t_func_recurse2.v

28 lines
627 B
Systemverilog
Raw Normal View History

2022-01-03 18:02:53 +01:00
// DESCRIPTION: Verilator: Verilog Test module
//
// This file ONLY is placed under the Creative Commons Public Domain.
// SPDX-FileCopyrightText: 2003 Wilson Snyder
2022-01-03 18:02:53 +01:00
// SPDX-License-Identifier: CC0-1.0
module t;
2026-03-08 23:26:40 +01:00
function automatic int recurse_1;
input int i;
if (i == 0) recurse_1 = 0;
else recurse_1 = i + recurse_2(i);
endfunction
2022-01-03 18:02:53 +01:00
2026-03-08 23:26:40 +01:00
function automatic int recurse_2;
input int i;
return recurse_1(i - 1) * 2;
endfunction
2022-01-03 18:02:53 +01:00
2026-03-08 23:26:40 +01:00
initial begin
if (recurse_1(0) != 0) $stop;
if (recurse_1(3) != (3 + 2 * (2 + 2 * (1)))) $stop;
$write("*-* All Finished *-*\n");
$finish;
end
2022-01-03 18:02:53 +01:00
endmodule