2022-08-26 01:29:11 +02:00
|
|
|
// DESCRIPTION: Verilator: Verilog Test module
|
|
|
|
|
//
|
2026-01-27 02:24:34 +01:00
|
|
|
// This file ONLY is placed under the Creative Commons Public Domain.
|
|
|
|
|
// SPDX-FileCopyrightText: 2022 Varun Koyyalagunta
|
2022-08-26 01:29:11 +02:00
|
|
|
// SPDX-License-Identifier: CC0-1.0
|
|
|
|
|
|
2026-03-03 13:21:24 +01:00
|
|
|
module t;
|
2022-08-26 01:29:11 +02:00
|
|
|
|
2026-03-10 02:38:29 +01:00
|
|
|
initial begin
|
|
|
|
|
$dumpfile("dump.vcd");
|
|
|
|
|
$dumpvars();
|
|
|
|
|
end
|
2022-08-26 01:29:11 +02:00
|
|
|
|
|
|
|
|
endmodule
|