32 lines
601 B
Systemverilog
32 lines
601 B
Systemverilog
// DESCRIPTION: Verilator: Verilog Test module
|
|
//
|
|
// This file ONLY is placed under the Creative Commons Public Domain
|
|
// SPDX-FileCopyrightText: 2025 Antmicro
|
|
// SPDX-License-Identifier: CC0-1.0
|
|
|
|
task disable_fork_blk;
|
|
disable t.init.fork_blk;
|
|
endtask
|
|
|
|
module t;
|
|
|
|
initial begin : init
|
|
int x = 0;
|
|
fork : fork_blk
|
|
begin
|
|
x = 1;
|
|
disable_fork_blk();
|
|
x = 2;
|
|
end
|
|
begin
|
|
#1;
|
|
x = 3;
|
|
end
|
|
join
|
|
if (x != 1) $stop;
|
|
$write("*-* All Finished *-*\n");
|
|
$finish;
|
|
end
|
|
|
|
endmodule
|