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;
|
|
|
|
|
|
|
|
|
|
sub sub();
|
|
|
|
|
|
|
|
|
|
initial begin
|
|
|
|
|
$write("*-* All Finished *-*\n");
|
|
|
|
|
$finish;
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
endmodule
|
|
|
|
|
|
|
|
|
|
module sub_ext;
|
|
|
|
|
bind sub_inst bound_if i_bound();
|
|
|
|
|
endmodule
|
|
|
|
|
|
|
|
|
|
module sub;
|
|
|
|
|
sub_ext sub_ext();
|
|
|
|
|
endmodule
|