diff options
author | StapleButter <thetotalworm@gmail.com> | 2017-02-28 00:50:54 +0100 |
---|---|---|
committer | StapleButter <thetotalworm@gmail.com> | 2017-02-28 00:50:54 +0100 |
commit | f16d2aec61efecbc82d516b12ac77a3a0341cf51 (patch) | |
tree | d550c648bfbe6175e1431f036007d7260863e040 /NDS.cpp | |
parent | fb9dddc360506352769efbc009b60e9471a609bf (diff) |
calculate texture coordinates
Diffstat (limited to 'NDS.cpp')
-rw-r--r-- | NDS.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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]); } |