mirror of
https://github.com/RaySollium99/picodrive.git
synced 2025-09-06 07:38:05 -04:00
SekStepM68k restored, pad read issues with D&D fixed
git-svn-id: file:///home/notaz/opt/svn/PicoDrive@543 be3aeb3a-fb24-0410-a615-afba39da0efa
This commit is contained in:
parent
9cd8914e02
commit
5f9a0d1630
5 changed files with 24 additions and 2 deletions
|
@ -105,7 +105,7 @@ PICO_INTERNAL_ASM void PicoMemReset(void)
|
|||
int PadRead(int i)
|
||||
{
|
||||
int pad,value,data_reg;
|
||||
pad=~PicoPad[i]; // Get inverse of pad MXYZ SACB RLDU
|
||||
pad=~PicoPadInt[i]; // Get inverse of pad MXYZ SACB RLDU
|
||||
data_reg=Pico.ioports[i+1];
|
||||
|
||||
// orr the bits, which are set as output
|
||||
|
@ -465,7 +465,7 @@ void PicoWrite16(u32 a,u16 d)
|
|||
|
||||
static void PicoWrite32(u32 a,u32 d)
|
||||
{
|
||||
elprintf(EL_IO, "w32: %06x, %08x", a&0xffffff, d);
|
||||
elprintf(EL_IO, "w32: %06x, %08x @%06x", a&0xffffff, d, SekPc);
|
||||
#ifdef EMU_CORE_DEBUG
|
||||
lastwrite_cyc_d[lwp_cyc++&15] = d;
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue