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. --- src/Noddybox.Emulation.EightBit.Z80/Z80CpuDecodeCB.cs | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 src/Noddybox.Emulation.EightBit.Z80/Z80CpuDecodeCB.cs (limited to 'src/Noddybox.Emulation.EightBit.Z80/Z80CpuDecodeCB.cs') 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 + { + /// + /// Decode and execute a CB-shifted opcode. + /// + /// The opcode. + private void DecodeCB(byte opcode) + { + } + } +} -- cgit v1.3