mirror of
https://github.com/MoleskiCoder/EightBitNet.git
synced 2026-01-22 16:16:17 +00:00
14 lines
247 B
C#
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,
|
|
}
|
|
}
|