From e739e4000b74c8629b23936aded80f92427d093f Mon Sep 17 00:00:00 2001 From: Jeffrey Pfau Date: Sun, 20 Apr 2014 01:05:29 -0700 Subject: [PATCH] Initialize halt --- src/arm/arm.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/arm/arm.c b/src/arm/arm.c index c34ee453b..5a239068b 100644 --- a/src/arm/arm.c +++ b/src/arm/arm.c @@ -124,6 +124,7 @@ void ARMReset(struct ARMCore* cpu) { cpu->cycles = 0; cpu->nextEvent = 0; + cpu->halted = 0; cpu->irqh.reset(cpu); }