diff options
Diffstat (limited to 'src/Noddybox.Emulation.EightBit.Z80/Z80CpuDecodeShiftedCB.cs')
-rw-r--r-- | src/Noddybox.Emulation.EightBit.Z80/Z80CpuDecodeShiftedCB.cs | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/Noddybox.Emulation.EightBit.Z80/Z80CpuDecodeShiftedCB.cs b/src/Noddybox.Emulation.EightBit.Z80/Z80CpuDecodeShiftedCB.cs new file mode 100644 index 0000000..ad663f3 --- /dev/null +++ b/src/Noddybox.Emulation.EightBit.Z80/Z80CpuDecodeShiftedCB.cs @@ -0,0 +1,19 @@ +//
+// Copyright (c) 2012 Ian Cowburn
+//
+using System;
+
+namespace Noddybox.Emulation.EightBit.Z80
+{
+ public partial class Z80Cpu
+ {
+ /// <summary>
+ /// Decode and execute a IX/IY CB-shifted opcode.
+ /// </summary>
+ /// <param name="opcode">The opcode.</param>
+ /// <param name="addr">The address to use for indirection.</param>
+ private void DecodeShiftedCB(byte opcode, ushort addr)
+ {
+ }
+ }
+}
|