RET                Return from a TML function

Syntax                        

RET

RETurn from a TML function

Operands

PlaceTML

Binary code

DescriptionEnds the execution of a TML function and performs the return to the next TML instruction after the function call.

 

Example        

...

CALL Function1;        // Call Function1

UPD;                        // Update immediate is next instruction

// executed after RET

...

Function1:

...

RET;                        //Exit from Function1