Emulator debugger GUI updates

This commit is contained in:
scawful
2023-11-18 00:03:49 -05:00
parent 6d6a0e4046
commit ed7204b127
4 changed files with 121 additions and 53 deletions

View File

@@ -30,19 +30,18 @@ class Emulator : public SharedROM {
void UpdateEmulator();
void RenderDebugger();
void RenderBreakpointList();
void RenderCpuState(CPU& cpu);
void RenderMemoryViewer();
void RenderCPUInstructionLog(
const std::vector<InstructionEntry>& instructionLog);
// Member variables to store internal state and resources
SNES snes_;
bool running_ = false;
bool debugger_ = false;
bool debugger_ = true;
bool loading_ = false;
bool show_ppu_reg_viewer_ = false;
bool integrated_debugger_mode_ = true;
bool separate_debugger_mode_ = false;
};