]> Shamusworld >> Repos - virtualjaguar/blobdiff - src/memory.cpp
Fix for bad branch handling in OP.
[virtualjaguar] / src / memory.cpp
index 03ba217dbdf252619134a7dbdccf6088c13fc847..3782200db00fc401548a17820f699b3c10750b4d 100644 (file)
@@ -23,6 +23,8 @@ the I/O function would take care of any weird stuff...
 Actually: writes would tuck in the value, but reads would have to be handled
 correctly since some registers do not fall on the same address as far as reading
 goes... Still completely doable though. :-)
+
+N.B.: Jaguar RAM is only 2 megs. ROM is 6 megs max, IO is 128K
 */
 
 #include "memory.h"
@@ -262,6 +264,5 @@ uint32_t & smode     = *((uint32_t *)&jagMemSpace[0xF1A154]);
 
 // Memory debugging identifiers
 
-const char * whoName[9] =
-       { "Unknown", "Jaguar", "DSP", "GPU", "TOM", "JERRY", "M68K", "Blitter", "OP" };
-
+const char * whoName[10] =
+       { "Unknown", "Jaguar", "DSP", "GPU", "TOM", "JERRY", "M68K", "Blitter", "OP", "Debugger" };