Tidy up the test suite usage between the 8080 and Z80 processors.

This commit is contained in:
Adrian Conlon
2018-08-12 16:30:32 +01:00
parent 228301573e
commit 256e25e344
4 changed files with 1 additions and 808 deletions
+1 -2
View File
@@ -17,7 +17,6 @@ void Board::initialise() {
//m_ram.load(romDirectory + "/zexdoc.com", 0x100); // Cringle/Bartholomew
m_ram.load(romDirectory + "/zexall.com", 0x100); // Cringle/Bartholomew
//m_ram.load(romDirectory + "/CPUTEST.COM", 0x100); // SuperSoft diagnostics
//m_ram.load(romDirectory + "/TEST.COM", 0x100); // Microcosm
poke(5, 0xc9); // ret
m_cpu.ExecutingInstruction.connect(std::bind(&Board::Cpu_ExecutingInstruction_Cpm, this, std::placeholders::_1));
@@ -79,5 +78,5 @@ void Board::Cpu_ExecutingInstruction_Debug(EightBit::Z80& cpu) {
<< EightBit::Disassembler::state(cpu)
<< "\t"
<< m_disassembler.disassemble(cpu)
<< '\n';
<< std::endl;
}