Individual Instruction Descriptions

Note:

You can not RET to a RET. For example, the following code can cause prob- lems:

CALL my sub

RET

To eliminate any problem, a NOP (or other code) should be inserted between the CALL and the RET. For example:

CALL my sub

NOP

RET

4-86

Page 172
Image 172
Texas Instruments MSP50C6xx manual Ret