EightBitNet/Test_M6502/Configuration.cs
2019-02-04 23:52:21 +00:00

35 lines
925 B
C#

// <copyright file="Configuration.cs" company="Adrian Conlon">
// Copyright (c) Adrian Conlon. All rights reserved.
// </copyright>
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; }
}
}