PPU upgrades, move Memory to own dir

This commit is contained in:
scawful
2023-08-27 15:24:27 -04:00
parent 190917ff6f
commit 5a4ecc5b20
14 changed files with 318 additions and 334 deletions

View File

@@ -53,6 +53,7 @@ void Emulator::RenderNavBar() {
}
if (ImGui::BeginMenu("Debug")) {
ImGui::MenuItem("PPU Register Viewer", nullptr, &show_ppu_reg_viewer_);
MENU_ITEM("Debugger") {}
MENU_ITEM("Memory Viewer") {}
MENU_ITEM("Tile Viewer") {}

View File

@@ -33,6 +33,7 @@ class Emulator : public SharedROM {
emu::SNES snes_;
bool running_ = false;
bool show_ppu_reg_viewer_ = false;
};
} // namespace core