mirror of
https://github.com/RaySollium99/picodrive.git
synced 2025-09-05 15:27:46 -04:00
dualcore integration in famc, bram cart C code, psp bugfixes
git-svn-id: file:///home/notaz/opt/svn/PicoDrive@294 be3aeb3a-fb24-0410-a615-afba39da0efa
This commit is contained in:
parent
4b167c12c7
commit
8022f53da6
15 changed files with 160 additions and 42 deletions
|
@ -213,7 +213,7 @@ static __inline void SekRunM68k(int cyc)
|
|||
#elif defined(EMU_M68K)
|
||||
SekCycleCnt+=m68k_execute(cyc_do);
|
||||
#elif defined(EMU_F68K)
|
||||
SekCycleCnt+=fm68k_emulate(cyc_do+1);
|
||||
SekCycleCnt+=fm68k_emulate(cyc_do+1, 0);
|
||||
#endif
|
||||
}
|
||||
|
||||
|
@ -230,7 +230,7 @@ static __inline void SekStep(void)
|
|||
#elif defined(EMU_M68K)
|
||||
SekCycleCnt+=m68k_execute(1);
|
||||
#elif defined(EMU_F68K)
|
||||
SekCycleCnt+=fm68k_emulate(1);
|
||||
SekCycleCnt+=fm68k_emulate(1, 0);
|
||||
#endif
|
||||
SekCycleAim=realaim;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue