mirror of
https://github.com/MoleskiCoder/EightBitNet.git
synced 2024-11-18 17:05:22 +00:00
9a1d5cc762
Signed-off-by: Adrian Conlon <Adrian.conlon@gmail.com>
57 lines
1.4 KiB
C#
57 lines
1.4 KiB
C#
// <copyright file="TestHarness.cs" company="Adrian Conlon">
|
|
// Copyright (c) Adrian Conlon. All rights reserved.
|
|
// </copyright>
|
|
|
|
namespace Intel8080.Test
|
|
{
|
|
using System;
|
|
using System.Diagnostics;
|
|
|
|
internal class TestHarness : IDisposable
|
|
{
|
|
private readonly Stopwatch timer = new Stopwatch();
|
|
private readonly Board board;
|
|
private long totalCycles = 0;
|
|
|
|
private bool disposed = false;
|
|
|
|
public TestHarness(Configuration configuration) => this.board = new Board(configuration);
|
|
|
|
public void Dispose()
|
|
{
|
|
this.Dispose(true);
|
|
GC.SuppressFinalize(this);
|
|
}
|
|
|
|
public void Run()
|
|
{
|
|
this.board.Initialize();
|
|
this.board.RaisePOWER();
|
|
|
|
var cpu = this.board.CPU;
|
|
|
|
this.timer.Start();
|
|
while (cpu.Powered)
|
|
{
|
|
this.totalCycles += cpu.Step();
|
|
}
|
|
|
|
this.timer.Stop();
|
|
}
|
|
|
|
protected virtual void Dispose(bool disposing)
|
|
{
|
|
if (!this.disposed)
|
|
{
|
|
if (disposing)
|
|
{
|
|
System.Console.Out.WriteLine($"\n\nGuest cycles = {this.totalCycles}");
|
|
System.Console.Out.WriteLine($"Seconds = {this.timer.ElapsedMilliseconds / 1000.0}");
|
|
}
|
|
|
|
this.disposed = true;
|
|
}
|
|
}
|
|
}
|
|
}
|