Add load rom file to emulator ui

This commit is contained in:
scawful
2024-04-24 23:38:00 -04:00
parent 4356bd3b08
commit 953c9a5c7f
4 changed files with 30 additions and 11 deletions

View File

@@ -727,7 +727,6 @@ class Cpu : public Loggable, public core::ExperimentFlags {
// ==========================================================================
uint16_t SP() const { return memory.SP(); }
void SetSP(uint16_t value) { memory.SetSP(value); }
void set_next_pc(uint16_t value) { next_pc_ = value; }
bool IsBreakpoint(uint32_t address) {
return std::find(breakpoints_.begin(), breakpoints_.end(), address) !=