===========================================================================
| 3631 | |
| 3632 | //=========================================================================== |
| 3633 | Update_t CmdCursorJumpRetAddr (int nArgs) |
| 3634 | { |
| 3635 | WORD nAddress = _6502_GetStackReturnAddress(); |
| 3636 | g_nDisasmCurAddress = nAddress; |
| 3637 | |
| 3638 | if (CURSOR_ALIGN_CENTER == nArgs) |
| 3639 | { |
| 3640 | WindowUpdateDisasmSize(); |
| 3641 | } |
| 3642 | else |
| 3643 | if (CURSOR_ALIGN_TOP == nArgs) |
| 3644 | { |
| 3645 | g_nDisasmCurLine = 0; |
| 3646 | } |
| 3647 | DisasmCalcTopBotAddress(); |
| 3648 | |
| 3649 | return UPDATE_ALL; |
| 3650 | } |
| 3651 | |
| 3652 | |
| 3653 | //=========================================================================== |
no test coverage detected