verilator/test_regress/t/t_final_assert.v

15 lines
300 B
Systemverilog
Raw Normal View History

2026-03-12 18:09:54 +01:00
// DESCRIPTION: Verilator: Verilog Test module
//
// This file ONLY is placed under the Creative Commons Public Domain.
// SPDX-FileCopyrightText: 2026 Antmicro
// SPDX-License-Identifier: CC0-1.0
2026-03-17 03:21:51 +01:00
module tb ();
initial begin
$finish();
end
final begin
assert (1 == 0);
end
2026-03-12 18:09:54 +01:00
endmodule