2022-11-05 16:40:34 +01:00
|
|
|
// DESCRIPTION: Verilator: Verilog Test module
|
|
|
|
|
//
|
|
|
|
|
// This file ONLY is placed under the Creative Commons Public Domain, for
|
2025-10-11 20:15:04 +02:00
|
|
|
// any use, without warranty, 2025 by Wilson Snyder.
|
2022-11-05 16:40:34 +01:00
|
|
|
// SPDX-License-Identifier: CC0-1.0
|
|
|
|
|
|
2025-10-11 20:15:04 +02:00
|
|
|
module t (
|
|
|
|
|
input clk /*verilator clock_enable*/
|
|
|
|
|
);
|
|
|
|
|
initial $finish;
|
|
|
|
|
endmodule
|