EightBitNet/Z80/Z80.Test/Configuration.cs
Adrian Conlon 46a12a2b7a Make the Z80 test harness mostly functional.
Signed-off-by: Adrian Conlon <Adrian.conlon@gmail.com>
2019-02-20 22:23:58 +00:00

25 lines
587 B
C#

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