mirror of
https://github.com/MoleskiCoder/EightBitNet.git
synced 2026-03-11 05:41:49 +00:00
31 lines
940 B
C#
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";
|
|
}
|
|
} |