mirror of
https://github.com/MoleskiCoder/EightBitNet.git
synced 2025-01-13 04:29:43 +00:00
224000c4c7
Signed-off-by: Adrian Conlon <Adrian.conlon@gmail.com>
35 lines
925 B
C#
35 lines
925 B
C#
// <copyright file="Configuration.cs" company="Adrian Conlon">
|
|
// Copyright (c) Adrian Conlon. All rights reserved.
|
|
// </copyright>
|
|
|
|
namespace Test
|
|
{
|
|
using EightBit;
|
|
|
|
internal class Configuration
|
|
{
|
|
private readonly ushort loadAddress = 0x400;
|
|
private readonly ushort startAddress = 0x400;
|
|
private readonly string romDirectory = "roms";
|
|
private readonly string program = "6502_functional_test.bin";
|
|
private bool debugMode = false;
|
|
|
|
public Configuration()
|
|
{
|
|
}
|
|
|
|
public bool DebugMode
|
|
{
|
|
get => this.debugMode;
|
|
set => this.debugMode = value;
|
|
}
|
|
|
|
public ushort LoadAddress { get => this.loadAddress; }
|
|
|
|
public ushort StartAddress { get => this.startAddress; }
|
|
|
|
public string RomDirectory { get => this.romDirectory; }
|
|
|
|
public string Program { get => this.program; }
|
|
}
|
|
} |