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