// // 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) { } } }