EightBitNet/M6502/PageCrossingBehavior.cs

12 lines
263 B
C#

// <copyright file="PageCrossingBehavior.cs" company="Adrian Conlon">
// Copyright (c) Adrian Conlon. All rights reserved.
// </copyright>
namespace EightBit
{
public enum PageCrossingBehavior
{
AlwaysReadTwice,
MaybeReadTwice,
}
}