From 50bff99fdd758ead34489814b8e40695e712b0dd Mon Sep 17 00:00:00 2001 From: Ian C Date: Tue, 3 Jan 2012 22:45:48 +0000 Subject: First pass of single byte opcodes done. --- .../Z80CpuDecodeShiftedCB.cs | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 src/Noddybox.Emulation.EightBit.Z80/Z80CpuDecodeShiftedCB.cs (limited to 'src/Noddybox.Emulation.EightBit.Z80/Z80CpuDecodeShiftedCB.cs') 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 + { + /// + /// Decode and execute a IX/IY CB-shifted opcode. + /// + /// The opcode. + /// The address to use for indirection. + private void DecodeShiftedCB(byte opcode, ushort addr) + { + } + } +} -- cgit v1.3