===========================================================================
| 2728 | |
| 2729 | //=========================================================================== |
| 2730 | Update_t CmdTraceLine (int nArgs) |
| 2731 | { |
| 2732 | g_nDebugSteps = nArgs ? g_aArgs[1].nValue : 1; |
| 2733 | g_nDebugStepCycles = 1; |
| 2734 | g_nDebugStepStart = regs.pc; |
| 2735 | g_nDebugStepUntil = -1; |
| 2736 | |
| 2737 | DebugEnterStepping(); |
| 2738 | DebugContinueStepping(true); |
| 2739 | |
| 2740 | return UPDATE_ALL; // TODO: Verify // 0 |
| 2741 | } |
| 2742 | |
| 2743 | |
| 2744 |
nothing calls this directly
no test coverage detected