STM8 "Jump / Call / Return" Befehle



Funktion Mnemonic Beispiel OP-Code
Call Subroutine, short CALL CALL [$1234.w] 72 CD ww bb
Call Subroutine, far CALLF CALLF $123456 8D ee ww bb
Call Subroutine, relative CALLR CALLR label 92 AD bb
Jump to Section "0" JP JP ([$1234.w],X) 72 DC ww bb
Jump far JPF JPF $123456 AC ee ww bb
Jump relative JRA JRA label 20 bb
Jump never JRF JRF label 21 bb
Jump relative JRT JRT label 20 bb
No Operation NOP NOP 9D
Return from Subroutine in Section 0 RET RET 81
Return Far from Subroutine RETF RETF 87