mirror of
https://github.com/verilator/verilator.git
synced 2025-01-12 09:37:56 +00:00
5d98035170
cint.mainInt(nodep) walks the tree and populates m_ctorVarsVec. Reuse EmitCImp cint for the slow mainImp() emition steps to make sure we emit constructor calls to setup SystemC sc_module names.
12 lines
266 B
Systemverilog
12 lines
266 B
Systemverilog
// DESCRIPTION: Verilator: Verilog Test module
|
|
//
|
|
// This file ONLY is placed under the Creative Commons Public Domain, for
|
|
// any use, without warranty, 2020 by Edgar E. Iglesias.
|
|
// SPDX-License-Identifier: CC0-1.0
|
|
|
|
module t (
|
|
clk
|
|
);
|
|
input clk;
|
|
endmodule
|