diff --git a/src/BizHawk.Emulation.Cores/CPUs/65x02/vr6502.Structures.cs b/src/BizHawk.Emulation.Cores/CPUs/65x02/vr6502.Structures.cs index 37a93e5706..6931cc9f2c 100644 --- a/src/BizHawk.Emulation.Cores/CPUs/65x02/vr6502.Structures.cs +++ b/src/BizHawk.Emulation.Cores/CPUs/65x02/vr6502.Structures.cs @@ -8,33 +8,24 @@ namespace BizHawk.Emulation.Cores.Components.vr6502 public struct VrEmu6502State { public VrEmu6502Model Model; - public IntPtr readFn; public IntPtr writeFn; - - public VrEmu6502Interrupt intPin; - public VrEmu6502Interrupt nmiPin; - + public IntPtr intPin; + public IntPtr nmiPin; public byte step; public byte currentOpcode; public ushort currentOpcodeAddr; - public byte wai; public byte stp; - public ushort pc; - public byte ac; public byte ix; public byte iy; public byte sp; - public byte flags; - public ushort zpBase; public ushort spBase; public ushort tmpAddr; - public IntPtr opcodes; public IntPtr mnemonicNames; public IntPtr addrModes;