aboutsummaryrefslogtreecommitdiff
path: root/src/NDS.cpp
diff options
context:
space:
mode:
authorStapleButter <thetotalworm@gmail.com>2017-04-10 18:47:11 +0200
committerStapleButter <thetotalworm@gmail.com>2017-04-10 18:47:11 +0200
commitf2622c047b957c6562089c0e953334845e23fec6 (patch)
tree5a8439148c0500e5011cb883edfcfa291a7b2f6f /src/NDS.cpp
parent2fef876eeb2482ee97242c700cb1a3ad364cb8c9 (diff)
some attempt at actually stubbing out wifi. except it won't fucking work.
Diffstat (limited to 'src/NDS.cpp')
-rw-r--r--src/NDS.cpp7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/NDS.cpp b/src/NDS.cpp
index 0948748..0be5169 100644
--- a/src/NDS.cpp
+++ b/src/NDS.cpp
@@ -803,8 +803,11 @@ void debug(u32 param)
printf("ARM9 PC=%08X LR=%08X %08X\n", ARM9->R[15], ARM9->R[14], ARM9->R_IRQ[1]);
printf("ARM7 PC=%08X LR=%08X %08X\n", ARM7->R[15], ARM7->R[14], ARM7->R_IRQ[1]);
- for (int i = 0; i < 9; i++)
- printf("VRAM %c: %02X\n", 'A'+i, GPU::VRAMCNT[i]);
+ printf("ARM9 IME=%08X IE=%08X IF=%08X\n", IME[0], IE[0], IF[0]);
+ printf("ARM7 IME=%08X IE=%08X IF=%08X\n", IME[1], IE[1], IF[1]);
+
+ //for (int i = 0; i < 9; i++)
+ // printf("VRAM %c: %02X\n", 'A'+i, GPU::VRAMCNT[i]);
}