/* clear CD-DA output */
cdd.audio[0] = cdd.audio[1] = 0;
+ /* no audio track playing */
+ Pico_mcd->s68k_regs[0x36+0] = 0x01;
/* reset file read position */
read_pos = -1;
}
if (Pico.romsize == 0) // no HINT vector from gate array for MSU
memset(Pico_mcd->bios + 0x70, 0xff, 4);
pcd_event_schedule_s68k(PCD_EVENT_CDC, 12500000/75);
+
+ cdc_reset();
+ cdd_reset();
}
void pcd_soft_reset(void)
Pico.sv.start = Pico.sv.end = 0; // unused
}
- msd_reset();
return 0;
}
// reschedule
event_time_next = 0;
pcd_run_events(SekCycleCntS68k);
+
+ // msd
+ msd_load();
}
// vim:shiftwidth=2:ts=2:expandtab
void msd_reset(void)
{
if (Pico_msd.state) {
- Pico_msd.state = Pico_msd.command = Pico_msd.result = 0;
cdd_stop();
+ Pico_msd.state = Pico_msd.command = Pico_msd.result = 0;
PicoResetHook = NULL;
}
}
+void msd_load(void)
+{
+ if (Pico_msd.state & MSD_ST_PLAY)
+ cdd_play_audio(Pico_msd.index, Pico_msd.currentlba);
+
+ // old saves have this initialized wrong
+ if (cdd.status == NO_DISC)
+ Pico_mcd->s68k_regs[0x36+0] = 0x01;
+}
+
// memory r/w functions
static u32 msd_read16(u32 a)
{
extern void msd_update(void); // 75Hz update, like CDD irq
extern void msd_reset(void); // reset state
+extern void msd_load(void); // state loaded
extern void msd_write8(u32 a, u32 d); // interface
extern void msd_write16(u32 a, u32 d);