16 lines
440 B
Systemverilog
16 lines
440 B
Systemverilog
// DESCRIPTION: Verilator: Verilog Test module
|
|
//
|
|
// This file ONLY is placed under The Creative Commons Public Domain.
|
|
// SPDX-FileCopyrightText: 2020 Wilson Snyder
|
|
// SPDX-License-Identifier: CC0-1.0
|
|
|
|
// Intentionally no timescale here, nor in driver file
|
|
module t;
|
|
initial begin
|
|
// Unspecified, but general consensus is 1s is default timeunit
|
|
$printtimescale;
|
|
$write("*-* All Finished *-*\n");
|
|
$finish;
|
|
end
|
|
endmodule
|