2019-02-20 22:23:58 +00:00
|
|
|
|
// <copyright file="Configuration.cs" company="Adrian Conlon">
|
|
|
|
|
// Copyright (c) Adrian Conlon. All rights reserved.
|
|
|
|
|
// </copyright>
|
2019-02-19 00:58:17 +00:00
|
|
|
|
|
|
|
|
|
namespace Z80.Test
|
|
|
|
|
{
|
2019-02-20 22:23:58 +00:00
|
|
|
|
using EightBit;
|
|
|
|
|
|
|
|
|
|
internal class Configuration
|
2019-02-19 00:58:17 +00:00
|
|
|
|
{
|
2019-02-20 22:23:58 +00:00
|
|
|
|
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";
|
2019-02-19 00:58:17 +00:00
|
|
|
|
}
|
2019-02-20 22:23:58 +00:00
|
|
|
|
}
|