Files
EightBitNet/Intel8080/Intel8080.Test/Configuration.cs
2025-10-06 13:44:31 +01:00

31 lines
940 B
C#

// <copyright file="Configuration.cs" company="Adrian Conlon">
// Copyright (c) Adrian Conlon. All rights reserved.
// </copyright>
namespace Intel8080.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; } = "8080EX1.COM";
public string Program { get; } = "8080EXER.COM";
//public string Program { get; } = "8080EXM.COM";
//public string Program { get; } = "8080PRE.COM";
//public string Program { get; } = "CPUTEST.COM";
//public string Program { get; } = "TEST.COM";
//public string Program { get; } = "TST8080.COM";
}
}