mirror of
https://github.com/RaySollium99/picodrive.git
synced 2025-09-05 15:27:46 -04:00
32x: new SH2 memory handling, hopefully faster
git-svn-id: file:///home/notaz/opt/svn/PicoDrive@817 be3aeb3a-fb24-0410-a615-afba39da0efa
This commit is contained in:
parent
6add7875b5
commit
bcf65fd674
7 changed files with 377 additions and 221 deletions
|
@ -7,10 +7,10 @@
|
|||
#include "gfx_cd.h"
|
||||
#include "pcm.h"
|
||||
|
||||
unsigned long s68k_read8_map [0x1000000 >> M68K_MEM_SHIFT];
|
||||
unsigned long s68k_read16_map [0x1000000 >> M68K_MEM_SHIFT];
|
||||
unsigned long s68k_write8_map [0x1000000 >> M68K_MEM_SHIFT];
|
||||
unsigned long s68k_write16_map[0x1000000 >> M68K_MEM_SHIFT];
|
||||
uptr s68k_read8_map [0x1000000 >> M68K_MEM_SHIFT];
|
||||
uptr s68k_read16_map [0x1000000 >> M68K_MEM_SHIFT];
|
||||
uptr s68k_write8_map [0x1000000 >> M68K_MEM_SHIFT];
|
||||
uptr s68k_write16_map[0x1000000 >> M68K_MEM_SHIFT];
|
||||
|
||||
MAKE_68K_READ8(s68k_read8, s68k_read8_map)
|
||||
MAKE_68K_READ16(s68k_read16, s68k_read16_map)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue