verilator/test_regress/t/t_sys_time.v

34 lines
619 B
Systemverilog
Raw Normal View History

2008-07-14 19:16:05 +02:00
// DESCRIPTION: Verilator: Verilog Test module
//
// This file ONLY is placed under the Creative Commons Public Domain.
// SPDX-FileCopyrightText: 2008 Wilson Snyder
// SPDX-License-Identifier: CC0-1.0
2008-07-14 19:16:05 +02:00
2026-03-10 02:38:29 +01:00
module t (
input clk
);
2008-07-14 19:16:05 +02:00
2026-03-10 02:38:29 +01:00
integer cyc = 0;
2008-07-14 19:16:05 +02:00
2026-03-10 02:38:29 +01:00
reg [63:0] time64;
2008-07-14 19:16:05 +02:00
2026-03-10 02:38:29 +01:00
// Test loop
always @(posedge clk) begin
cyc <= cyc + 1;
if (cyc == 0) begin
end
else if (cyc < 10) begin
end
else if (cyc < 90) begin
time64 = $time;
if ($stime != time64[31:0]) $stop;
end
else if (cyc == 99) begin
$write("*-* All Finished *-*\n");
$finish;
end
end
2008-07-14 19:16:05 +02:00
endmodule