From fa23e7cc37d1e9977ba292ede6a0ff584733027a Mon Sep 17 00:00:00 2001 From: kub Date: Tue, 4 Mar 2025 20:02:27 +0100 Subject: [PATCH] core, fix 32x state changed by state load --- cpu/sh2/compiler.c | 5 ++++- pico/32x/32x.c | 12 +++++++++++- pico/pico_int.h | 5 ++++- pico/state.c | 12 ++++++++++-- 4 files changed, 29 insertions(+), 5 deletions(-) diff --git a/cpu/sh2/compiler.c b/cpu/sh2/compiler.c index a5d5c879..e925638f 100644 --- a/cpu/sh2/compiler.c +++ b/cpu/sh2/compiler.c @@ -5678,7 +5678,7 @@ static void sh2_smc_rm_blocks(u32 a, int len, int tcache_id, int free) if (!removed) { if (len <= 4) - dbg(2, "rm_blocks called @%08x, no work?", _a); + dbg(2, "rm_blocks called @%08x, no work?", a); return; } @@ -5902,6 +5902,9 @@ static void bcache_stats(void) void sh2_drc_flush_all(void) { + if (block_tables[0] == NULL) + return; + backtrace(); state_dump(); block_stats(); diff --git a/pico/32x/32x.c b/pico/32x/32x.c index 8db3a6d0..f7d58be5 100644 --- a/pico/32x/32x.c +++ b/pico/32x/32x.c @@ -120,13 +120,16 @@ void Pico32xStartup(void) sh2_init(&ssh2, 1, &msh2); ssh2.irq_callback = sh2_irq_cb; } + PicoMemSetup32x(); p32x_pwm_ctl_changed(); p32x_timers_recalc(); + Pico32x.regs[0] |= P32XS_ADEN; + Pico32x.sh2_regs[0] = P32XS2_ADEN; if (Pico.m.ncart_in) - Pico32x.sh2_regs[0] |= P32XS_nCART; + Pico32x.sh2_regs[0] |= P32XS2_nCART; if (!Pico.m.pal) Pico32x.vdp_regs[0] |= P32XV_nPAL; @@ -141,7 +144,9 @@ void Pico32xStartup(void) void Pico32xShutdown(void) { + elprintf(EL_STATUS|EL_32X, "32X shutdown"); Pico32x.sh2_regs[0] &= ~P32XS2_ADEN; + Pico32x.regs[0] &= ~P32XS_ADEN; rendstatus_old = -1; @@ -692,6 +697,11 @@ void Pico32xStateLoaded(int is_early) p32x_timers_recalc(); p32x_pwm_state_loaded(); p32x_run_events(SekCyclesDone()); + + // TODO wakeup CPUs for now. poll detection stuff must go to the save state! + p32x_m68k_poll_event(0, -1); + p32x_sh2_poll_event(msh2.poll_addr, &msh2, SH2_IDLE_STATES, msh2.m68krcycles_done); + p32x_sh2_poll_event(ssh2.poll_addr, &ssh2, SH2_IDLE_STATES, ssh2.m68krcycles_done); } void Pico32xPrepare(void) diff --git a/pico/pico_int.h b/pico/pico_int.h index 2355c8ee..02aa468e 100644 --- a/pico/pico_int.h +++ b/pico/pico_int.h @@ -585,11 +585,14 @@ typedef struct // 32X #define P32XS_FM (1<<15) -#define P32XS_nCART (1<< 8) #define P32XS_REN (1<< 7) #define P32XS_nRES (1<< 1) #define P32XS_ADEN (1<< 0) + +#define P32XS2_FM (1<<15) +#define P32XS2_nCART (1<< 8) #define P32XS2_ADEN (1<< 9) + #define P32XS_FULL (1<< 7) // DREQ FIFO full #define P32XS_68S (1<< 2) #define P32XS_DMA (1<< 1) diff --git a/pico/state.c b/pico/state.c index 8dc48813..9625621b 100644 --- a/pico/state.c +++ b/pico/state.c @@ -416,7 +416,8 @@ static int state_load(void *file) int len_check; int retval = -1; char header[8]; - int ver, len, len_vdp = 0; + int ver, has_32x = 0; + int len, len_vdp = 0; memset(buff_m68k, 0, sizeof(buff_m68k)); memset(buff_s68k, 0, sizeof(buff_s68k)); @@ -443,7 +444,10 @@ static int state_load(void *file) if (len < 0 || len > 1024*512) R_ERROR_RETURN("bad length"); if (CHUNK_S68K <= chunk && chunk <= CHUNK_MISC_CD && !(PicoIn.AHW & PAHW_MCD)) R_ERROR_RETURN("cd chunk in non CD state?"); - if (CHUNK_32X_FIRST <= chunk && chunk <= CHUNK_32X_LAST && !(PicoIn.AHW & PAHW_32X)) + + // 32X only appears in PicoDrive after it has been enabled, so track this + has_32x |= CHUNK_32X_FIRST <= chunk && chunk <= CHUNK_32X_LAST; + if (has_32x && !(PicoIn.AHW & PAHW_32X)) Pico32xStartup(); switch (chunk) @@ -590,6 +594,10 @@ breakswitch: readend: PicoVideoLoad(buff_vdp, len_vdp); + if (PicoIn.AHW & PAHW_32X) + if (!has_32x) + Pico32xShutdown(); // in case of loading a state with 32X disabled + if (PicoIn.AHW & PAHW_SMS) PicoStateLoadedMS(); -- 2.39.5