EightBitNet/M6502/M6502.Test/Configuration.cs
Adrian Conlon 03caba99dc Follow most of the guideline suggestions from VS2019 preview. Pretty good suggestions!
Signed-off-by: Adrian Conlon <Adrian.conlon@gmail.com>
2019-02-22 22:33:51 +00:00

25 lines
603 B
C#

// <copyright file="Configuration.cs" company="Adrian Conlon">
// Copyright (c) Adrian Conlon. All rights reserved.
// </copyright>
namespace M6502.Test
{
using EightBit;
internal class Configuration
{
public Configuration()
{
}
public bool DebugMode { get; set; } = false;
public Register16 LoadAddress { get; } = new Register16(0x400);
public Register16 StartAddress { get; } = new Register16(0x400);
public string RomDirectory { get; } = "roms";
public string Program { get; } = "6502_functional_test.bin";
}
}