verilator/test_regress/t/t_mod_topmodule__underunder.v

17 lines
435 B
Systemverilog

// DESCRIPTION: Verilator: Verilog Test module
//
// This test verifies that a top-module can be specified which
// is instantiated beneath another module in the compiled source
// code.
//
// This file ONLY is placed under the Creative Commons Public Domain.
// SPDX-FileCopyrightText: 2025 Wilson Snyder
// SPDX-License-Identifier: CC0-1.0
module t_mod_topmodule__underunder;
initial $finish;
endmodule
module faketop;
endmodule