Calls binary function by specified address with formal parameter list (parameter1 … parameterN)
If any parameter is number (integer or floating-point), it is passed directly. If any parameter is pointer, it is passed as integer, containing memory block address, it points to. Structures that are passed by value are passed in the following order: each structure field is passed as separate parameter, beginning from the first field to the last. Function result is the result of called binary function.
Example:
(CALL pBinaryFunction 12) ; calls function to the address ‘pBinaryFunction’ with parameter 12