mirror of
https://github.com/RaySollium99/picodrive.git
synced 2025-09-06 15:48:05 -04:00
core, floating bus read for 68k in some more places
This commit is contained in:
parent
71f9c68f5b
commit
9f29605f55
3 changed files with 26 additions and 16 deletions
|
@ -1087,7 +1087,7 @@ PICO_INTERNAL_ASM u32 PicoVideoRead(u32 a)
|
|||
return d;
|
||||
}
|
||||
|
||||
if ((a&0x1c)==0x08)
|
||||
if (a == 0x08)
|
||||
{
|
||||
unsigned int c;
|
||||
u32 d;
|
||||
|
@ -1106,7 +1106,7 @@ PICO_INTERNAL_ASM u32 PicoVideoRead(u32 a)
|
|||
return VideoRead(0);
|
||||
}
|
||||
|
||||
return 0;
|
||||
return PicoRead16_floating(a | 0xc00000);
|
||||
}
|
||||
|
||||
unsigned char PicoVideoRead8DataH(int is_from_z80)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue