mirror of
https://github.com/MoleskiCoder/EightBitNet.git
synced 2024-11-18 02:06:28 +00:00
14 lines
252 B
C#
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,
|
|||
|
}
|
|||
|
}
|