The debugger should not stop by default

This commit is contained in:
Jeffrey Pfau 2014-02-01 20:48:25 -08:00
parent 97e4e7a28c
commit 020aec4e7b
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@ static void _checkBreakpoints(struct ARMDebugger* debugger) {
void ARMDebuggerInit(struct ARMDebugger* debugger, struct ARMCore* cpu) {
debugger->cpu = cpu;
debugger->state = DEBUGGER_PAUSED;
debugger->state = DEBUGGER_RUNNING;
debugger->breakpoints = 0;
debugger->memoryShim.original = cpu->memory;
debugger->memoryShim.p = debugger;