Sonic CD shows it's title screen
[picodrive.git] / Pico / PicoInt.h
index 8f328ea..fa7f7ec 100644 (file)
@@ -13,7 +13,7 @@
 #include "Pico.h"\r
 \r
 \r
-// to select core, define EMU_C68K, EMU_M68K or EMU_A68K in your makefile\r
+// to select core, define EMU_C68K, EMU_M68K or EMU_A68K in your makefile or project\r
 \r
 #ifdef __cplusplus\r
 extern "C" {\r
@@ -172,12 +172,13 @@ struct mcd_misc
 \r
 typedef struct\r
 {\r
-       unsigned char bios[0x20000];\r
+       unsigned char bios[0x20000];                    // 128K\r
        union {\r
-               unsigned char prg_ram[0x80000];\r
+               unsigned char prg_ram[0x80000];         // 512K\r
                unsigned char prg_ram_b[4][0x20000];\r
        };\r
-       unsigned char word_ram[0x40000];\r
+       unsigned char word_ram[0x40000];                // 256K\r
+       unsigned char bram[0x2000];                     // 8K\r
        unsigned char s68k_regs[0x200];\r
        CDD  cdd;\r
        CDC  cdc;\r