mirror of
https://github.com/RaySollium99/picodrive.git
synced 2025-10-27 13:38:51 +01:00
SVP stubs
git-svn-id: file:///home/notaz/opt/svn/PicoDrive@317 be3aeb3a-fb24-0410-a615-afba39da0efa
This commit is contained in:
parent
0ce6e5ee0a
commit
f53f286a8b
11 changed files with 69 additions and 12 deletions
|
|
@ -136,7 +136,7 @@ u32 OtherRead16(u32 a, int realsize)
|
|||
goto end;
|
||||
}
|
||||
|
||||
d = OtherRead16End(a, realsize);
|
||||
d = PicoRead16Hook(a, realsize);
|
||||
|
||||
end:
|
||||
return d;
|
||||
|
|
@ -191,7 +191,7 @@ void OtherWrite8(u32 a,u32 d)
|
|||
return;
|
||||
}
|
||||
|
||||
OtherWrite8End(a, d, 8);
|
||||
PicoWrite8Hook(a, d, 8);
|
||||
}
|
||||
|
||||
|
||||
|
|
@ -227,10 +227,10 @@ void OtherWrite16(u32 a,u32 d)
|
|||
SRAMWrite(a, d);
|
||||
return;
|
||||
}
|
||||
#else
|
||||
OtherWrite8End(a, d>>8, 16);
|
||||
OtherWrite8End(a+1,d&0xff, 16);
|
||||
#endif
|
||||
|
||||
PicoWrite8Hook(a, d>>8, 16);
|
||||
PicoWrite8Hook(a+1,d&0xff, 16);
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue