2017-07-05 16:46:02 +00:00
|
|
|
#include "stdafx.h"
|
|
|
|
#include "Board.h"
|
|
|
|
#include "Disassembly.h"
|
|
|
|
|
|
|
|
#include "ProcessorType.h"
|
|
|
|
|
|
|
|
#include <iostream>
|
|
|
|
#include <sstream>
|
|
|
|
#include <iomanip>
|
|
|
|
|
|
|
|
Board::Board(const Configuration& configuration)
|
|
|
|
: m_configuration(configuration),
|
|
|
|
m_memory(0xffff),
|
|
|
|
m_cpu(EightBit::MOS6502(m_memory, EightBit::ProcessorType::Cpu6502)),
|
|
|
|
m_symbols(""),
|
|
|
|
m_disassembler(m_cpu, m_symbols),
|
|
|
|
m_profiler(m_cpu, m_disassembler, m_symbols),
|
|
|
|
m_oldPC(0xffff),
|
|
|
|
m_stopped(false) {
|
|
|
|
}
|
|
|
|
|
|
|
|
void Board::initialise() {
|
|
|
|
|
|
|
|
m_memory.clear();
|
|
|
|
auto romDirectory = m_configuration.getRomDirectory();
|
|
|
|
|
|
|
|
m_memory.loadRam(romDirectory + "/6502_functional_test.bin", 0); // Klaus Dormann functional tests
|
|
|
|
|
|
|
|
if (m_configuration.isProfileMode()) {
|
|
|
|
m_cpu.ExecutingInstruction.connect(std::bind(&Board::Cpu_ExecutingInstruction_Profile, this, std::placeholders::_1));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (m_configuration.isDebugMode()) {
|
|
|
|
m_cpu.ExecutingInstruction.connect(std::bind(&Board::Cpu_ExecutingInstruction_Debug, this, std::placeholders::_1));
|
|
|
|
}
|
|
|
|
|
|
|
|
m_cpu.ExecutedInstruction.connect(std::bind(&Board::Cpu_ExecutedInstruction_StopLoop, this, std::placeholders::_1));
|
|
|
|
|
|
|
|
m_cpu.initialise();
|
|
|
|
m_cpu.PC() = m_configuration.getStartAddress();
|
|
|
|
}
|
|
|
|
|
|
|
|
void Board::Cpu_ExecutingInstruction_Profile(const EightBit::MOS6502& cpu) {
|
|
|
|
|
|
|
|
const auto pc = m_cpu.PC();
|
|
|
|
|
|
|
|
//m_profiler.addAddress(pc.word, m_cpu.);
|
|
|
|
//m_profiler.addInstruction(m_memory.peek(pc.word));
|
|
|
|
}
|
|
|
|
|
2017-07-06 20:32:52 +00:00
|
|
|
void Board::Cpu_ExecutedInstruction_StopLoop(const EightBit::MOS6502& cpu) {
|
|
|
|
|
2017-07-05 16:46:02 +00:00
|
|
|
auto pc = m_cpu.PC().word;
|
|
|
|
if (m_oldPC == pc) {
|
|
|
|
m_cpu.halt();
|
|
|
|
auto test = m_cpu.GetByte(0x0200);
|
|
|
|
std::cout << std::endl << "** Test=" << std::hex << (int)test;
|
2017-07-06 20:32:52 +00:00
|
|
|
} else {
|
|
|
|
m_oldPC = pc;
|
2017-07-05 16:46:02 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Board::Cpu_ExecutingInstruction_Debug(const EightBit::MOS6502& cpu) {
|
|
|
|
|
|
|
|
auto address = m_cpu.PC().word;
|
|
|
|
auto cell = m_memory.peek(address);
|
|
|
|
|
|
|
|
const auto& instruction = m_cpu.getInstruction(cell);
|
|
|
|
auto mode = instruction.mode;
|
|
|
|
|
|
|
|
std::cout << std::hex;
|
|
|
|
std::cout << "PC=" << std::setw(4) << std::setfill('0') << address << ":";
|
2017-07-07 08:24:58 +00:00
|
|
|
std::cout << "P=" << (std::string)m_cpu.P() << ", ";
|
2017-07-06 20:32:52 +00:00
|
|
|
std::cout << std::setw(2) << std::setfill('0');
|
2017-07-07 08:24:58 +00:00
|
|
|
std::cout << "A=" << (int)m_cpu.A() << ", ";
|
|
|
|
std::cout << "X=" << (int)m_cpu.X() << ", ";
|
|
|
|
std::cout << "Y=" << (int)m_cpu.Y() << ", ";
|
|
|
|
std::cout << "S=" << (int)m_cpu.S() << "\t";
|
2017-07-05 16:46:02 +00:00
|
|
|
|
|
|
|
std::cout << m_disassembler.Dump_ByteValue(cell);
|
|
|
|
std::cout << m_disassembler.DumpBytes(mode, address + 1);
|
|
|
|
|
|
|
|
std::cout << "\t ";
|
|
|
|
|
|
|
|
std::cout << m_disassembler.Disassemble(address);
|
|
|
|
|
2017-07-06 20:32:52 +00:00
|
|
|
std::cout << "\n";
|
2017-07-05 16:46:02 +00:00
|
|
|
}
|