2022-10-20 12:31:00 +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 Arkadiusz Kozdra
|
2022-10-20 12:31:00 +02:00
|
|
|
// SPDX-License-Identifier: CC0-1.0
|
|
|
|
|
|
|
|
|
|
// See also t_interface_virtual.v
|
|
|
|
|
|
2025-08-28 15:03:46 +02:00
|
|
|
interface QBus();
|
2022-10-20 12:31:00 +02:00
|
|
|
endinterface
|
|
|
|
|
|
2025-09-13 15:28:43 +02:00
|
|
|
module t;
|
2022-10-20 12:31:00 +02:00
|
|
|
|
|
|
|
|
virtual QBus q8;
|
|
|
|
|
|
|
|
|
|
initial begin
|
|
|
|
|
$write("*-* All Finished *-*\n");
|
|
|
|
|
$finish;
|
|
|
|
|
end
|
|
|
|
|
endmodule
|