// reset button doesn't affect MCD hardware
// use Pico.sv.data for RAM cart
- if (PicoIn.opt & POPT_EN_MCD_RAMCART) {
- if (Pico.sv.data == NULL)
- Pico.sv.data = calloc(1, 0x12000);
- }
- else if (Pico.sv.data != NULL) {
- free(Pico.sv.data);
- Pico.sv.data = NULL;
+ if (Pico.romsize == 0) {
+ if (PicoIn.opt & POPT_EN_MCD_RAMCART) {
+ if (Pico.sv.data == NULL)
+ Pico.sv.data = calloc(1, 0x12000);
+ }
+ else if (Pico.sv.data != NULL) {
+ free(Pico.sv.data);
+ Pico.sv.data = NULL;
+ }
+ Pico.sv.start = Pico.sv.end = 0; // unused
}
- Pico.sv.start = Pico.sv.end = 0; // unused
msd_reset();
return 0;
\r
if (is_sram)\r
{\r
- strcpy(ext, (PicoIn.AHW & PAHW_MCD) ? ".brm" : ".srm");\r
+ strcpy(ext, (PicoIn.AHW & PAHW_MCD) && Pico.romsize == 0 ? ".brm" : ".srm");\r
romfname_ext(saveFname, sizeof(static_buff),\r
- (PicoIn.AHW & PAHW_MCD) ? "brm"PATH_SEP : "srm"PATH_SEP, ext);\r
+ (PicoIn.AHW & PAHW_MCD) && Pico.romsize == 0 ? "brm"PATH_SEP : "srm"PATH_SEP, ext);\r
if (!load)\r
return saveFname;\r
\r
int sram_size;\r
unsigned char *sram_data;\r
int truncate = 1;\r
- if (PicoIn.AHW & PAHW_MCD)\r
+ if ((PicoIn.AHW & PAHW_MCD) && Pico.romsize == 0)\r
{\r
if (PicoIn.opt & POPT_EN_MCD_RAMCART) {\r
sram_size = 0x12000;\r
ret = fread(sram_data, 1, sram_size, sramFile);\r
ret = ret > 0 ? 0 : -1;\r
fclose(sramFile);\r
- if ((PicoIn.AHW & PAHW_MCD) && (PicoIn.opt&POPT_EN_MCD_RAMCART))\r
+ if ((PicoIn.AHW & PAHW_MCD) && Pico.romsize == 0 && (PicoIn.opt&POPT_EN_MCD_RAMCART))\r
memcpy(Pico_mcd->bram, sram_data, 0x2000);\r
} else {\r
// sram save needs some special processing\r
{
case RETRO_MEMORY_SAVE_RAM:
/* Note: MCD RAM cart uses Pico.sv.data */
- if ((PicoIn.AHW & PAHW_MCD) &&
+ if ((PicoIn.AHW & PAHW_MCD) && Pico.romsize == 0 &&
!(PicoIn.opt & POPT_EN_MCD_RAMCART))
data = Pico_mcd->bram;
else
case RETRO_MEMORY_SAVE_RAM:
if (PicoIn.AHW & PAHW_MCD)
{
- if (PicoIn.opt & POPT_EN_MCD_RAMCART)
+ if (Pico.romsize == 0 && PicoIn.opt & POPT_EN_MCD_RAMCART)
return 0x12000;
else /* bram */
return 0x2000;