mirror of
https://github.com/RaySollium99/picodrive.git
synced 2025-09-05 07:17:45 -04:00
sh2, optimizations to innermost run loop
This commit is contained in:
parent
9a02334f3a
commit
2eb213314a
3 changed files with 21 additions and 18 deletions
|
@ -383,7 +383,7 @@ static void run_sh2(SH2 *sh2, unsigned int m68k_cycles)
|
|||
elprintf_sh2(sh2, EL_32X, "+run %u %d @%08x",
|
||||
sh2->m68krcycles_done, cycles, sh2->pc);
|
||||
|
||||
done = sh2_execute(sh2, cycles, PicoIn.opt & POPT_EN_DRC);
|
||||
done = sh2_execute(sh2, cycles);
|
||||
|
||||
sh2->m68krcycles_done += C_SH2_TO_M68K(sh2, done);
|
||||
sh2->state &= ~SH2_STATE_RUN;
|
||||
|
@ -499,12 +499,12 @@ void sync_sh2s_normal(unsigned int m68k_target)
|
|||
pprof_end(msh2);
|
||||
|
||||
now = next;
|
||||
if (!(msh2.state & SH2_IDLE_STATES)) {
|
||||
if (CYCLES_GT(now, msh2.m68krcycles_done))
|
||||
if (CYCLES_GT(now, msh2.m68krcycles_done)) {
|
||||
if (!(msh2.state & SH2_IDLE_STATES))
|
||||
now = msh2.m68krcycles_done;
|
||||
}
|
||||
if (!(ssh2.state & SH2_IDLE_STATES)) {
|
||||
if (CYCLES_GT(now, ssh2.m68krcycles_done))
|
||||
if (CYCLES_GT(now, ssh2.m68krcycles_done)) {
|
||||
if (!(ssh2.state & SH2_IDLE_STATES))
|
||||
now = ssh2.m68krcycles_done;
|
||||
}
|
||||
if (CYCLES_GT(now, timer_cycles+STEP_N)) {
|
||||
|
@ -571,6 +571,9 @@ void sync_sh2s_lockstep(unsigned int m68k_target)
|
|||
|
||||
void PicoFrame32x(void)
|
||||
{
|
||||
sh2_execute_prepare(&msh2, PicoIn.opt & POPT_EN_DRC);
|
||||
sh2_execute_prepare(&ssh2, PicoIn.opt & POPT_EN_DRC);
|
||||
|
||||
Pico.m.scanline = 0;
|
||||
|
||||
Pico32x.vdp_regs[0x0a/2] &= ~P32XV_VBLK; // get out of vblank
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue