mirror of
https://github.com/MoleskiCoder/EightBitNet.git
synced 2025-01-27 04:31:26 +00:00
15 lines
470 B
C#
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";
|
|||
|
}
|
|||
|
}
|