// // Copyright (c) Adrian Conlon. All rights reserved. // namespace Test { using EightBit; internal class Configuration { private readonly ushort loadAddress = 0x400; private readonly ushort startAddress = 0x400; private readonly string romDirectory = "roms"; private readonly string program = "6502_functional_test.bin"; private bool debugMode = false; public Configuration() { } public bool DebugMode { get => this.debugMode; set => this.debugMode = value; } public ushort LoadAddress { get => this.loadAddress; } public ushort StartAddress { get => this.startAddress; } public string RomDirectory { get => this.romDirectory; } public string Program { get => this.program; } } }