mirror of
https://github.com/RaySollium99/picodrive.git
synced 2025-09-05 07:17:45 -04:00
sh2 memory interface optimzations
This commit is contained in:
parent
4f4e9bf3bd
commit
6822ba9d64
10 changed files with 585 additions and 157 deletions
|
@ -958,9 +958,9 @@ void p32x_dreq1_trigger(void);
|
|||
void p32x_timers_recalc(void);
|
||||
void p32x_timers_do(unsigned int m68k_slice);
|
||||
void sh2_peripheral_reset(SH2 *sh2);
|
||||
unsigned int sh2_peripheral_read8(unsigned int a, SH2 *sh2);
|
||||
unsigned int sh2_peripheral_read16(unsigned int a, SH2 *sh2);
|
||||
unsigned int sh2_peripheral_read32(unsigned int a, SH2 *sh2);
|
||||
unsigned int REGPARM(2) sh2_peripheral_read8(unsigned int a, SH2 *sh2);
|
||||
unsigned int REGPARM(2) sh2_peripheral_read16(unsigned int a, SH2 *sh2);
|
||||
unsigned int REGPARM(2) sh2_peripheral_read32(unsigned int a, SH2 *sh2);
|
||||
void REGPARM(3) sh2_peripheral_write8(unsigned int a, unsigned int d, SH2 *sh2);
|
||||
void REGPARM(3) sh2_peripheral_write16(unsigned int a, unsigned int d, SH2 *sh2);
|
||||
void REGPARM(3) sh2_peripheral_write32(unsigned int a, unsigned int d, SH2 *sh2);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue