aboutsummaryrefslogtreecommitdiff
path: root/NDS.cpp
diff options
context:
space:
mode:
authorStapleButter <thetotalworm@gmail.com>2017-02-28 00:50:54 +0100
committerStapleButter <thetotalworm@gmail.com>2017-02-28 00:50:54 +0100
commitf16d2aec61efecbc82d516b12ac77a3a0341cf51 (patch)
treed550c648bfbe6175e1431f036007d7260863e040 /NDS.cpp
parentfb9dddc360506352769efbc009b60e9471a609bf (diff)
calculate texture coordinates
Diffstat (limited to 'NDS.cpp')
-rw-r--r--NDS.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/NDS.cpp b/NDS.cpp
index c50b13c..0bba278 100644
--- a/NDS.cpp
+++ b/NDS.cpp
@@ -776,6 +776,9 @@ 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]);
}