Solving timing issues

This commit is contained in:
Anonymus Raccoon
2020-03-28 20:47:13 +01:00
parent f44cd8a106
commit 9be49e283d
18 changed files with 432 additions and 485 deletions
+1 -1
View File
@@ -344,7 +344,7 @@ namespace ComSquare::Debugger
return ss.str();
}
int CPUDebug::RESB(uint24_t)
int CPUDebug::RESB()
{
CPU::RESB();
this->_updateRegistersPanel();
+1 -1
View File
@@ -170,7 +170,7 @@ namespace ComSquare::Debugger
//! @brief Return the current program counter of this CPU.
uint24_t getPC();
//! @brief Update the UI when resetting the CPU.
int RESB(uint24_t) override;
int RESB() override;
//! @brief Convert a basic CPU to a debugging CPU.
explicit CPUDebug(ComSquare::CPU::CPU &cpu, SNES &snes);
CPUDebug(const CPUDebug &) = delete;