verilator/test_regress/t/t_sampled_sensitivity.v

16 lines
334 B
Systemverilog
Raw Normal View History

// 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-10 02:38:29 +01:00
module t (
input clk
);
always @(posedge $sampled(clk)) begin
$write("*-* All Finished *-*\n");
$finish;
end
endmodule