2023-08-25 14:21:15 +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: 2023 Wilson Snyder
|
2023-08-25 14:21:15 +02:00
|
|
|
// SPDX-License-Identifier: CC0-1.0
|
|
|
|
|
|
|
|
|
|
interface bound_if;
|
|
|
|
|
endinterface
|
|
|
|
|
|
|
|
|
|
module t;
|
|
|
|
|
|
2026-03-03 13:21:24 +01:00
|
|
|
sub sub ();
|
2023-08-25 14:21:15 +02:00
|
|
|
|
2026-03-03 13:21:24 +01:00
|
|
|
initial begin
|
|
|
|
|
$write("*-* All Finished *-*\n");
|
|
|
|
|
$finish;
|
|
|
|
|
end
|
2023-08-25 14:21:15 +02:00
|
|
|
|
|
|
|
|
endmodule
|
|
|
|
|
|
|
|
|
|
module sub_ext;
|
2026-03-03 13:21:24 +01:00
|
|
|
bind sub_inst bound_if i_bound ();
|
2023-08-25 14:21:15 +02:00
|
|
|
endmodule
|
|
|
|
|
|
|
|
|
|
module sub;
|
2026-03-03 13:21:24 +01:00
|
|
|
sub_ext sub_ext ();
|
2023-08-25 14:21:15 +02:00
|
|
|
endmodule
|