C64: Fix some bugs
This commit is contained in:
parent
b1320f38ef
commit
df8edae97e
|
@ -124,7 +124,7 @@ namespace BizHawk.Emulation.Cores.Computers.Commodore64.MOS
|
|||
_ret = ~ddrb & 0xFF;
|
||||
_tst = (pra | ~ddra) & GetJoystick2();
|
||||
_ret &= GetKeyboardRows(_tst);
|
||||
return (_ret | (prb & ddrb)) & GetJoystick1();
|
||||
return (_ret | (prb & ddrb)) & (GetJoystick1() | (~pra & 0x1F));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -99,7 +99,7 @@
|
|||
return 0x01 | ((_pointerVm & 0x3C00) >> 6) |
|
||||
((_pointerCb & 0x7) << 1);
|
||||
case 0x19:
|
||||
return 0x70 | (_intRaster ? 0x01 : 0x00) |
|
||||
return 0x70 | (_rasterInterruptTriggered ? 0x01 : 0x00) |
|
||||
(_intSpriteDataCollision ? 0x02 : 0x00) |
|
||||
(_intSpriteCollision ? 0x04 : 0x00) |
|
||||
(_intLightPen ? 0x08 : 0x00) |
|
||||
|
|
|
@ -54,7 +54,7 @@ namespace BizHawk.Emulation.Cores.Computers.Commodore64.Serial
|
|||
public override void SyncState(Serializer ser)
|
||||
{
|
||||
ser.BeginSection("Disk");
|
||||
_disk.SyncState(ser);
|
||||
if (_disk != null) { _disk.SyncState(ser); }
|
||||
ser.EndSection();
|
||||
|
||||
ser.Sync("BitHistory", ref _bitHistory);
|
||||
|
|
Loading…
Reference in New Issue