diff options
| author | Ian C <ianc@noddybox.co.uk> | 2012-01-03 22:45:48 +0000 |
|---|---|---|
| committer | Ian C <ianc@noddybox.co.uk> | 2012-01-03 22:45:48 +0000 |
| commit | 50bff99fdd758ead34489814b8e40695e712b0dd (patch) | |
| tree | ebea5a1ba673a42b6181f7a871c5724c691367b4 /src/Noddybox.Emulation.EightBit.Z80/Z80CpuDecodeShiftedCB.cs | |
| parent | 647083a1f53bbec58e5058616b84f706b0402911 (diff) | |
First pass of single byte opcodes done.
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)
+ {
+ }
+ }
+}
|
