diff --git a/BizHawk.Emulation.Cores/Computers/Commodore64/MOS/Cia.Port.cs b/BizHawk.Emulation.Cores/Computers/Commodore64/MOS/Cia.Port.cs index 32cfba5d9a..1e56d421d4 100644 --- a/BizHawk.Emulation.Cores/Computers/Commodore64/MOS/Cia.Port.cs +++ b/BizHawk.Emulation.Cores/Computers/Commodore64/MOS/Cia.Port.cs @@ -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)); } } diff --git a/BizHawk.Emulation.Cores/Computers/Commodore64/MOS/Vic.Registers.cs b/BizHawk.Emulation.Cores/Computers/Commodore64/MOS/Vic.Registers.cs index 0aca8d65f6..007336c7f5 100644 --- a/BizHawk.Emulation.Cores/Computers/Commodore64/MOS/Vic.Registers.cs +++ b/BizHawk.Emulation.Cores/Computers/Commodore64/MOS/Vic.Registers.cs @@ -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) | diff --git a/BizHawk.Emulation.Cores/Computers/Commodore64/Serial/Drive1541.cs b/BizHawk.Emulation.Cores/Computers/Commodore64/Serial/Drive1541.cs index e6540b972b..ddd47146a7 100644 --- a/BizHawk.Emulation.Cores/Computers/Commodore64/Serial/Drive1541.cs +++ b/BizHawk.Emulation.Cores/Computers/Commodore64/Serial/Drive1541.cs @@ -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);