EightBitNet/Z80/RegisterIndex.cs

14 lines
252 B
C#

// <copyright file="RegisterIndex.cs" company="Adrian Conlon">
// Copyright (c) Adrian Conlon. All rights reserved.
// </copyright>
namespace EightBit
{
public enum RegisterIndex
{
IndexBC,
IndexDE,
IndexHL,
}
}