2022-10-20 12:31:00 +02:00
|
|
|
// DESCRIPTION: Verilator: Verilog Test module
|
|
|
|
|
//
|
|
|
|
|
// This file ONLY is placed under the Creative Commons Public Domain, for
|
|
|
|
|
// any use, without warranty, 2022 by Arkadiusz Kozdra.
|
|
|
|
|
// 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
|