aboutsummaryrefslogtreecommitdiff
path: root/ARMInterpreter.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ARMInterpreter.cpp')
-rw-r--r--ARMInterpreter.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/ARMInterpreter.cpp b/ARMInterpreter.cpp
index 2acef27..424bfaa 100644
--- a/ARMInterpreter.cpp
+++ b/ARMInterpreter.cpp
@@ -1,6 +1,7 @@
#include <stdio.h>
#include "NDS.h"
#include "ARMInterpreter.h"
+#include "ARMInterpreter_ALU.h"
#include "ARMInterpreter_Branch.h"
@@ -11,6 +12,7 @@ namespace ARMInterpreter
s32 A_UNK(ARM* cpu)
{
printf("undefined ARM instruction %08X @ %08X\n", cpu->CurInstr, cpu->R[15]-8);
+ for (int i = 0; i < 16; i++) printf("R%d: %08X\n", i, cpu->R[i]);
NDS::Halt();
return 0x7FFFFFFF;
}