mirror of
https://github.com/MoleskiCoder/EightBitNet.git
synced 2025-01-22 00:32:32 +00:00
More analsys changes
This commit is contained in:
parent
3cbc7f32d2
commit
4cd689350e
@ -8,9 +8,9 @@ namespace M6502.Test
|
|||||||
|
|
||||||
internal class Configuration
|
internal class Configuration
|
||||||
{
|
{
|
||||||
public bool DebugMode { get; set; } = false;
|
public bool DebugMode { get; set; }
|
||||||
|
|
||||||
public bool Profile { get; set; } = true;
|
public bool Profile { get; set; }
|
||||||
|
|
||||||
// Sudoku
|
// Sudoku
|
||||||
public string Program { get; } = "sudoku.65b";
|
public string Program { get; } = "sudoku.65b";
|
||||||
@ -19,8 +19,8 @@ namespace M6502.Test
|
|||||||
public Register16 OutputAddress { get; } = new Register16(0xe001);
|
public Register16 OutputAddress { get; } = new Register16(0xe001);
|
||||||
public Register16 LoadAddress { get; } = new Register16(0xf000);
|
public Register16 LoadAddress { get; } = new Register16(0xf000);
|
||||||
public Register16 StartAddress { get; } = new Register16(0xf000);
|
public Register16 StartAddress { get; } = new Register16(0xf000);
|
||||||
public bool AllowKeyRead { get; } = false;
|
public bool AllowKeyRead { get; }
|
||||||
public bool BreakOnKeyRead { get; } = false;
|
public bool BreakOnKeyRead { get; }
|
||||||
|
|
||||||
// Klaus
|
// Klaus
|
||||||
//public string Program { get; } = "6502_functional_test.bin";
|
//public string Program { get; } = "6502_functional_test.bin";
|
||||||
|
@ -11,7 +11,7 @@ namespace M6502.Test
|
|||||||
var configuration = new Configuration();
|
var configuration = new Configuration();
|
||||||
|
|
||||||
#if DEBUG
|
#if DEBUG
|
||||||
configuration.DebugMode = true;
|
configuration.DebugMode;
|
||||||
#endif
|
#endif
|
||||||
using (var harness = new TestHarness(configuration))
|
using (var harness = new TestHarness(configuration))
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user