22 lines
453 B
Systemverilog
22 lines
453 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
|
|
|
|
module t;
|
|
initial begin
|
|
forever begin
|
|
fork
|
|
begin
|
|
assert ($c(1)) begin
|
|
$write("*-* All Finished *-*\n");
|
|
$finish;
|
|
end
|
|
wait ($c(1));
|
|
end
|
|
join_any
|
|
end
|
|
end
|
|
endmodule
|