EightBitNet/MC6809/MC6809.Test/Configuration.cs
Adrian Conlon 23ba6d457e Add emulation of Grant Searle MC6809 SBC as a test container (untested!)
Signed-off-by: Adrian Conlon <Adrian.conlon@gmail.com>
2019-04-28 21:00:30 +01:00

15 lines
470 B
C#

namespace EightBit
{
public class Configuration
{
public static readonly ulong CyclesPerSecond = 2 * 1024 * 1024;
public static readonly ulong FrameCycleInterval = CyclesPerSecond / 60;
public static readonly ulong TerminationCycles = CyclesPerSecond* 10 * 10;
public bool DebugMode { get; } = false;
public bool TerminatesEarly { get; } = false;
public string RomDirectory { get; } = "roms\\searle";
}
}