mirror of
https://github.com/MoleskiCoder/EightBitNet.git
synced 2025-08-07 20:25:28 +00:00
33 lines
865 B
C#
33 lines
865 B
C#
// <copyright file="Configuration.cs" company="Adrian Conlon">
|
|
// Copyright (c) Adrian Conlon. All rights reserved.
|
|
// </copyright>
|
|
|
|
namespace M6502.Test
|
|
{
|
|
using EightBit;
|
|
|
|
internal class Configuration
|
|
{
|
|
public Configuration()
|
|
{
|
|
}
|
|
|
|
public bool DebugMode { get; set; } = false;
|
|
|
|
public bool BreakOnRead { get; } = true;
|
|
|
|
public Register16 LoadAddress { get; } = new Register16(0x400);
|
|
|
|
public Register16 StartAddress { get; } = new Register16(0x400);
|
|
|
|
public Register16 InputAddress { get; } = new Register16(0xf004);
|
|
|
|
public Register16 OutputAddress { get; } = new Register16(0xf001);
|
|
|
|
public int PollingTickInterval { get; } = 10000000;
|
|
|
|
public string RomDirectory { get; } = "roms";
|
|
|
|
public string Program { get; } = "6502_functional_test.bin";
|
|
}
|
|
} |