asiInit<yourSimulator>
asiInit<yourSimulator>(o_tool) => t
Description
Calls the procedures to initialize your simulator’s environment. This function must be defined for socket interfaces. Do not use it for direct interfaces.
You must write asiInit<yourSimulator>, where <yourSimulator> is the name of your simulator. Do not include the angle brackets (<>).
Arguments
Value Returned
Examples
Creates the procedure that initializes the simulator environment for the XYZ simulator.
procedure ( asiInitXYZ( tool )
<insert your code>
)
=> t
Return to top