2015-12-06 01:39:40 +01: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: 2015 Todd Strader
|
2020-03-21 16:24:24 +01:00
|
|
|
// SPDX-License-Identifier: CC0-1.0
|
2015-12-06 01:39:40 +01:00
|
|
|
|
|
|
|
|
// bug998
|
|
|
|
|
|
2026-03-08 23:26:40 +01:00
|
|
|
interface intf #(
|
|
|
|
|
parameter PARAM = 0
|
|
|
|
|
) ();
|
|
|
|
|
logic val;
|
|
|
|
|
function integer func();
|
|
|
|
|
return 5;
|
|
|
|
|
endfunction
|
2015-12-06 01:39:40 +01:00
|
|
|
endinterface
|
|
|
|
|
|
2026-03-08 23:26:40 +01:00
|
|
|
module t1 (
|
|
|
|
|
intf mod_intf
|
|
|
|
|
);
|
|
|
|
|
initial begin
|
|
|
|
|
$display("%m %d", mod_intf.val);
|
|
|
|
|
end
|
2015-12-06 01:39:40 +01:00
|
|
|
endmodule
|
|
|
|
|
|
2026-03-03 13:21:24 +01:00
|
|
|
module t;
|
2015-12-06 01:39:40 +01:00
|
|
|
|
2026-03-08 23:26:40 +01:00
|
|
|
//intf #(.PARAM(1)) my_intf [1:0] ();
|
|
|
|
|
intf #(.PARAM(1)) my_intf ();
|
|
|
|
|
|
|
|
|
|
generate
|
|
|
|
|
genvar the_genvar;
|
|
|
|
|
for (the_genvar = 0; the_genvar < 2; the_genvar++) begin : TestIf
|
|
|
|
|
//assign my_intf[the_genvar].val = '1;
|
|
|
|
|
//t1 t (.mod_intf(my_intf[the_genvar]));
|
|
|
|
|
t1 t (.mod_intf(my_intf));
|
|
|
|
|
end
|
|
|
|
|
endgenerate
|
|
|
|
|
|
|
|
|
|
// t1 t (.mod_intf(my_intf[1]));
|
|
|
|
|
|
|
|
|
|
// generate
|
|
|
|
|
// begin : TestIf
|
|
|
|
|
// assign my_intf[1].val = '1;
|
|
|
|
|
// t1 t (.mod_intf(my_intf[1]));
|
|
|
|
|
// end
|
|
|
|
|
// endgenerate
|
|
|
|
|
|
|
|
|
|
// generate
|
|
|
|
|
// begin
|
|
|
|
|
// assign my_intf[0].val = '1;
|
|
|
|
|
// t1 t (.mod_intf(my_intf[0]));
|
|
|
|
|
// end
|
|
|
|
|
// endgenerate
|
|
|
|
|
|
|
|
|
|
initial begin
|
|
|
|
|
$write("*-* All Finished *-*\n");
|
|
|
|
|
$finish;
|
|
|
|
|
end
|
2015-12-06 01:39:40 +01:00
|
|
|
endmodule
|