diff --git a/BizHawk.Emulation.Cores/CPUs/CP1610/CP1610.Execute.cs b/BizHawk.Emulation.Cores/CPUs/CP1610/CP1610.Execute.cs index 14354d1488..b464bb1429 100644 --- a/BizHawk.Emulation.Cores/CPUs/CP1610/CP1610.Execute.cs +++ b/BizHawk.Emulation.Cores/CPUs/CP1610/CP1610.Execute.cs @@ -93,7 +93,9 @@ namespace BizHawk.Emulation.Cores.Components.CP1610 else { // Double Byte Data. - value = (ushort)(ReadMemory(Register[mem]++) & 0xFF); + value = (ushort)(ReadMemory(Register[mem]) & 0xFF); + if (mem >= 4) + Register[mem]++; value |= (ushort)(ReadMemory(Register[mem]) << 8); } // Auto-increment the memory register if it does so on write.