===========================================================================
| 2671 | |
| 2672 | //=========================================================================== |
| 2673 | Update_t CmdTrace (int nArgs) |
| 2674 | { |
| 2675 | g_nDebugSteps = nArgs ? g_aArgs[1].nValue : 1; |
| 2676 | g_nDebugStepCycles = 0; |
| 2677 | g_nDebugStepStart = regs.pc; |
| 2678 | g_nDebugStepUntil = -1; |
| 2679 | |
| 2680 | DebugEnterStepping(); |
| 2681 | DebugContinueStepping(true); |
| 2682 | |
| 2683 | return UPDATE_ALL; // TODO: Verify // 0 |
| 2684 | } |
| 2685 | |
| 2686 | //=========================================================================== |
| 2687 | Update_t CmdTraceFile (int nArgs) |
no test coverage detected