Files
EightBitNet/Z80/RegisterIndex.cs
2024-10-12 12:09:22 +01:00

14 lines
247 B
C#

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