Defines the initialization entry point for the application.
INIT (FunctionName)
This command is mandatory for assembly application and optional otherwise. It cannot be specified more than once in the prm file. When you specify the INIT command in the prm file, the linker uses the specified function as application entry point. This is either the main routine or a startup routine calling the main routine.
When INIT is not specified in the prm file, the linker looks for a function named __start and uses it as the application entry point.
INIT (MyGlobStart) /* Specify a global variable as application entry point.*/