2019-02-04 23:52:21 +00:00
|
|
|
|
// <copyright file="Configuration.cs" company="Adrian Conlon">
|
|
|
|
|
// Copyright (c) Adrian Conlon. All rights reserved.
|
|
|
|
|
// </copyright>
|
|
|
|
|
|
2019-02-06 22:49:26 +00:00
|
|
|
|
namespace M6502.Test
|
2019-02-02 15:12:51 +00:00
|
|
|
|
{
|
|
|
|
|
using EightBit;
|
|
|
|
|
|
|
|
|
|
internal class Configuration
|
|
|
|
|
{
|
2019-02-04 23:52:21 +00:00
|
|
|
|
public Configuration()
|
|
|
|
|
{
|
|
|
|
|
}
|
2019-02-02 15:12:51 +00:00
|
|
|
|
|
2019-02-22 22:33:51 +00:00
|
|
|
|
public bool DebugMode { get; set; } = false;
|
2019-02-02 15:12:51 +00:00
|
|
|
|
|
2019-02-22 22:33:51 +00:00
|
|
|
|
public Register16 LoadAddress { get; } = new Register16(0x400);
|
2019-02-04 23:52:21 +00:00
|
|
|
|
|
2019-02-22 22:33:51 +00:00
|
|
|
|
public Register16 StartAddress { get; } = new Register16(0x400);
|
2019-02-04 23:52:21 +00:00
|
|
|
|
|
2019-02-22 22:33:51 +00:00
|
|
|
|
public string RomDirectory { get; } = "roms";
|
2019-02-02 15:12:51 +00:00
|
|
|
|
|
2019-02-22 22:33:51 +00:00
|
|
|
|
public string Program { get; } = "6502_functional_test.bin";
|
2019-02-02 15:12:51 +00:00
|
|
|
|
}
|
|
|
|
|
}
|