summaryrefslogtreecommitdiff
path: root/src/Noddybox.Emulation.EightBit.Z80/Z80CpuDecodeCB.cs
blob: 73cb611b87b8b6317aee3ad50e1b04755933c50b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//
// Copyright (c) 2012 Ian Cowburn
//
using System;

namespace Noddybox.Emulation.EightBit.Z80
{
    public partial class Z80Cpu
    {
        /// <summary>
        /// Decode and execute a CB-shifted opcode.
        /// </summary>
        /// <param name="opcode">The opcode.</param>
        private void DecodeCB(byte opcode)
        {
        }
    }
}