asiGetSimInputFileList
asiGetSimInputFileList(o_session) =>l_fileNamesList
Description
Returns a list of all file names concatenated to generate the input file to the simulator. You can override this method to add/delete files used to generate the final input file to your simulator.
Arguments
Value Returned
|
List list of file names used to generate input file to the simulator. |
Examples
defmethod( asiGetSimInputFileList (( session <yourSimulator>_session>)) cons( "veriloga.inc" callNextMethod() )
)
Adds the contents of file veriloga.inc to the final input file to the simulator.
Return to top