summaryrefslogtreecommitdiff
path: root/src/Noddybox.Emulation.EightBit.Z80/Z80CpuDecodeShiftedCB.cs
blob: ad663f36d11f92cea82e40bf5fd37b5b8e1a00c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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)
        {
        }
    }
}