verilator/test_regress/t/t_interface_param_another_b...

21 lines
446 B
Systemverilog
Raw Normal View History

// DESCRIPTION: Verilator: Verilog Test module
//
// This file ONLY is placed under the Creative Commons Public Domain.
// SPDX-FileCopyrightText: 2017 Johan Bjork
// SPDX-License-Identifier: CC0-1.0
2026-03-03 13:21:24 +01:00
module t;
simple_bus sb_intf ();
simple_bus #(.PARAMETER(sb_intf.dummy)) simple ();
initial begin
$write("*-* All Finished *-*\n");
$finish;
end
endmodule
interface simple_bus #(
PARAMETER = 0
);
logic dummy;
endinterface