EightBitNet/Z80/RegisterIndex.cs
Adrian Conlon 5714798756 Lots of stylecop encouraged changes.
Signed-off-by: Adrian Conlon <Adrian.conlon@gmail.com>
2019-02-19 00:56:16 +00:00

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,
}
}