2025-10-20 16:16:05 +02:00
|
|
|
// DESCRIPTION: Verilator: Verilog Test module
|
|
|
|
|
//
|
2026-01-27 02:24:34 +01:00
|
|
|
// This file ONLY is placed under the Creative Commons Public Domain
|
|
|
|
|
// SPDX-FileCopyrightText: 2025 Antmicro
|
2025-10-20 16:16:05 +02:00
|
|
|
// SPDX-License-Identifier: CC0-1.0
|
|
|
|
|
|
|
|
|
|
module t;
|
|
|
|
|
initial begin
|
|
|
|
|
forever begin
|
|
|
|
|
fork
|
|
|
|
|
begin
|
2026-03-08 23:26:40 +01:00
|
|
|
assert ($c(
|
|
|
|
|
1
|
|
|
|
|
)) begin
|
2025-10-20 16:16:05 +02:00
|
|
|
$write("*-* All Finished *-*\n");
|
|
|
|
|
$finish;
|
|
|
|
|
end
|
|
|
|
|
wait ($c(1));
|
|
|
|
|
end
|
|
|
|
|
join_any
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
endmodule
|