From 788b8cc4dd404a826ce881c020ee6ca0388a5975 Mon Sep 17 00:00:00 2001 From: Ian C Date: Thu, 1 Mar 2012 00:02:07 +0000 Subject: Initial working version of test suite. Fixed INC8 and DEC8 with results. --- .../Z80CpuEventArgs.cs | 55 ---------------------- 1 file changed, 55 deletions(-) (limited to 'src/Noddybox.Emulation.EightBit.Z80/Z80CpuEventArgs.cs') diff --git a/src/Noddybox.Emulation.EightBit.Z80/Z80CpuEventArgs.cs b/src/Noddybox.Emulation.EightBit.Z80/Z80CpuEventArgs.cs index fb0173a..84edfa1 100644 --- a/src/Noddybox.Emulation.EightBit.Z80/Z80CpuEventArgs.cs +++ b/src/Noddybox.Emulation.EightBit.Z80/Z80CpuEventArgs.cs @@ -28,60 +28,5 @@ namespace Noddybox.Emulation.EightBit.Z80 /// The opcode that was executed to trigger the event. /// public byte Opcode {get; set;} - - /// - /// The current state of the accumulator. - /// - public byte A {get; set;} - - /// - /// The current state of the flag register. - /// - public Z80Flags F {get; set;} - - /// - /// The current state of the BC register pair. - /// - public Register16 BC {get; set;} - - /// - /// The current state of the DE register pair. - /// - public Register16 DE {get; set;} - - /// - /// The current state of the HL register pair. - /// - public Register16 HL {get; set;} - - /// - /// The current state of the stack pointer. - /// - public ushort SP {get; set;} - - /// - /// The current state of the program counter. - /// - public ushort PC {get; set;} - - /// - /// The alternate AF' register. - /// - public Register16 AF_ {get; set;} - - /// - /// The alternate BC' register. - /// - public Register16 BC_ {get; set;} - - /// - /// The alternate DE' register. - /// - public Register16 DE_ {get; set;} - - /// - /// The alternate HL' register. - /// - public Register16 HL_ {get; set;} } } -- cgit v1.2.3