2019-02-02 15:12:51 +00:00
|
|
|
|
namespace Test
|
|
|
|
|
{
|
|
|
|
|
using EightBit;
|
|
|
|
|
|
|
|
|
|
internal class Configuration
|
|
|
|
|
{
|
|
|
|
|
private bool debugMode = false;
|
2019-02-03 00:42:55 +00:00
|
|
|
|
private readonly ushort loadAddress = 0x400;
|
|
|
|
|
private readonly ushort startAddress = 0x400;
|
2019-02-02 15:12:51 +00:00
|
|
|
|
private readonly string romDirectory = "roms";
|
|
|
|
|
private readonly string program = "6502_functional_test.bin";
|
|
|
|
|
|
|
|
|
|
public Configuration() {}
|
|
|
|
|
|
|
|
|
|
public bool DebugMode {
|
|
|
|
|
get { return debugMode; }
|
|
|
|
|
set { debugMode = value; }
|
|
|
|
|
}
|
|
|
|
|
|
2019-02-03 00:42:55 +00:00
|
|
|
|
public ushort LoadAddress { get { return loadAddress; } }
|
|
|
|
|
public ushort StartAddress { get { return startAddress; } }
|
2019-02-02 15:12:51 +00:00
|
|
|
|
|
|
|
|
|
public string RomDirectory { get { return romDirectory; } }
|
|
|
|
|
public string Program { get { return program; } }
|
|
|
|
|
}
|
|
|
|
|
}
|