2017-03-29 01:55:20 +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: 2017 Johan Bjork
|
2020-03-21 16:24:24 +01:00
|
|
|
// SPDX-License-Identifier: CC0-1.0
|
2017-03-29 01:55:20 +02:00
|
|
|
|
2026-03-03 13:21:24 +01:00
|
|
|
module t;
|
2025-10-31 20:49:30 +01:00
|
|
|
simple_bus sb_intf ();
|
|
|
|
|
simple_bus #(.PARAMETER(sb_intf.dummy)) simple ();
|
|
|
|
|
initial begin
|
|
|
|
|
$write("*-* All Finished *-*\n");
|
|
|
|
|
$finish;
|
|
|
|
|
end
|
2017-03-29 01:55:20 +02:00
|
|
|
endmodule
|
|
|
|
|
|
2025-10-31 20:49:30 +01:00
|
|
|
interface simple_bus #(
|
|
|
|
|
PARAMETER = 0
|
|
|
|
|
);
|
|
|
|
|
logic dummy;
|
2017-03-29 01:55:20 +02:00
|
|
|
endinterface
|