mirror of
https://github.com/RaySollium99/picodrive.git
synced 2025-09-06 07:38:05 -04:00
cd/Memory.s improvements, reset fixed?
git-svn-id: file:///home/notaz/opt/svn/PicoDrive@71 be3aeb3a-fb24-0410-a615-afba39da0efa
This commit is contained in:
parent
4ff2d52753
commit
5c69a605ae
8 changed files with 213 additions and 254 deletions
|
@ -154,9 +154,9 @@ unsigned int gfx_cd_read(unsigned int a)
|
|||
return 0;
|
||||
}
|
||||
|
||||
void gfx_cd_write(unsigned int a, unsigned int d)
|
||||
void gfx_cd_write16(unsigned int a, unsigned int d)
|
||||
{
|
||||
dprintf("gfx_cd_write(%x, %04x)", a, d);
|
||||
dprintf("gfx_cd_write16(%x, %04x)", a, d);
|
||||
|
||||
switch (a) {
|
||||
case 0x58: // .Reg_Stamp_Size
|
||||
|
@ -193,7 +193,7 @@ void gfx_cd_write(unsigned int a, unsigned int d)
|
|||
gfx_cd_start();
|
||||
return;
|
||||
|
||||
default: dprintf("gfx_cd_write FIXME: unexpected address: %02x", a); return;
|
||||
default: dprintf("gfx_cd_write16 FIXME: unexpected address: %02x", a); return;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue