verilator/test_regress/t/t_interface_virtual_unused.v

21 lines
388 B
Systemverilog
Raw Normal View History

2022-10-20 12:31:00 +02:00
// DESCRIPTION: Verilator: Verilog Test module
//
// This file ONLY is placed under the Creative Commons Public Domain.
// SPDX-FileCopyrightText: 2022 Arkadiusz Kozdra
2022-10-20 12:31:00 +02:00
// SPDX-License-Identifier: CC0-1.0
// See also t_interface_virtual.v
2026-03-08 23:26:40 +01:00
interface QBus ();
2022-10-20 12:31:00 +02:00
endinterface
module t;
2022-10-20 12:31:00 +02:00
2026-03-08 23:26:40 +01:00
virtual QBus q8;
2022-10-20 12:31:00 +02:00
2026-03-08 23:26:40 +01:00
initial begin
$write("*-* All Finished *-*\n");
$finish;
end
2022-10-20 12:31:00 +02:00
endmodule