mirror of
https://github.com/MoleskiCoder/EightBit.git
synced 2024-11-20 08:32:00 +00:00
f0515ae65f
Signed-off-by: Adrian.Conlon <adrian.conlon@gmail.com>
42 lines
918 B
C++
42 lines
918 B
C++
#pragma once
|
|
|
|
#include "FuseTest.h"
|
|
#include "FuseExpectedTestResult.h"
|
|
|
|
#include "Bus.h"
|
|
#include "LR35902.h"
|
|
|
|
namespace Fuse {
|
|
class TestRunner {
|
|
private:
|
|
const Test& m_test;
|
|
const ExpectedTestResult& m_expected;
|
|
|
|
bool m_failed;
|
|
bool m_unimplemented;
|
|
|
|
EightBit::Bus m_bus;
|
|
EightBit::LR35902 m_cpu;
|
|
|
|
void initialise();
|
|
void initialiseRegisters();
|
|
void initialiseMemory();
|
|
|
|
void check();
|
|
void checkregisters();
|
|
void checkMemory();
|
|
|
|
void dumpDifference(const std::string& description, uint8_t high, uint8_t low) const;
|
|
void dumpDifference(
|
|
const std::string& highDescription,
|
|
const std::string& lowDescription,
|
|
EightBit::register16_t actual, EightBit::register16_t expected) const;
|
|
|
|
public:
|
|
TestRunner(const Test& test, const ExpectedTestResult& expected);
|
|
|
|
void run();
|
|
bool failed() const { return m_failed; }
|
|
bool unimplemented() const { return m_unimplemented; }
|
|
};
|
|
} |