verilator/test_regress/t/t_fork_output_arg.v

30 lines
507 B
Systemverilog
Raw Normal View History

// DESCRIPTION: Verilator: Verilog Test module
//
// This file ONLY is placed under the Creative Commons Public Domain.
// SPDX-FileCopyrightText: 2023 Antmicro Ltd
// SPDX-License-Identifier: CC0-1.0
class Cls;
2026-03-08 23:26:40 +01:00
int x = 100;
task get_x(output int arg);
arg = x;
endtask
endclass
task automatic test;
2026-03-08 23:26:40 +01:00
int o;
Cls c = new;
fork
c.get_x(o);
join_any
if (o != 100) $stop;
endtask
2026-03-03 13:21:24 +01:00
module t;
2026-03-08 23:26:40 +01:00
initial begin
test();
$write("*-* All Finished *-*\n");
$finish;
end
endmodule