===========================================================================
| 2657 | |
| 2658 | //=========================================================================== |
| 2659 | Update_t CmdStepOut (int nArgs) |
| 2660 | { |
| 2661 | // TODO: "RET" should probably pop the Call stack |
| 2662 | // Also see: CmdCursorJumpRetAddr |
| 2663 | WORD nAddress = _6502_GetStackReturnAddress(); |
| 2664 | |
| 2665 | nArgs = _Arg_1( nAddress ); |
| 2666 | g_aArgs[1].sArg[0] = 0; |
| 2667 | CmdGo( 1, true ); |
| 2668 | |
| 2669 | return UPDATE_ALL; |
| 2670 | } |
| 2671 | |
| 2672 | //=========================================================================== |
| 2673 | Update_t CmdTrace (int nArgs) |
no test coverage detected