verilator/test_regress/t/t_assert_on.v

18 lines
346 B
Systemverilog
Raw Normal View History

// DESCRIPTION: Verilator: Verilog Test module
//
// This file ONLY is placed under the Creative Commons Public Domain.
// SPDX-FileCopyrightText: 2007 Wilson Snyder
// SPDX-License-Identifier: CC0-1.0
2026-03-03 13:21:24 +01:00
module t (
input clk
);
2026-03-03 13:21:24 +01:00
always @(posedge clk) begin
assert (0);
$write("*-* All Finished *-*\n");
$finish;
end
endmodule