asiDefineDataMappingFunction
asiDefineDataMappingFunction(o_tools_dataType s_function) =>s_function
Description
Defines the data mapping functions.
Arguments
Value Returned
Examples
Calls the XYZMapNetName
function to convert the Spectre-like net name to the net name in the PSF file of the XYZ simulator. For example, you might use this function to convert lower case characters to uppercase, or you might convert the hierarchical delimiter (^) to the hierarchical delimiter for your simulator.
asiDefineDataMappingFunction( tool 'VT 'asiXYZMapNetName ) procedure( asiXYZMapNetName( dataDir specifier ) ; replace ^ by . in net names... specifier = asiMapNetName( dataDir specifier ) rplaca( specifier
artStrSubstitute( car( specifier ) "^" "." )
)
)
Return to top