2023-09-27 04:15:48 +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: 2023 Goekce Aydos
|
2023-09-27 04:15:48 +02:00
|
|
|
// SPDX-License-Identifier: CC0-1.0
|
|
|
|
|
|
2024-11-10 02:20:54 +01:00
|
|
|
// Interface instantiation without parenthesis
|
|
|
|
|
|
2023-09-27 04:15:48 +02:00
|
|
|
interface intf;
|
|
|
|
|
endinterface
|
|
|
|
|
|
|
|
|
|
module t;
|
|
|
|
|
intf intf_i;
|
|
|
|
|
initial $finish;
|
|
|
|
|
endmodule
|