Move Apu cycling from SNES to Apu class

This commit is contained in:
scawful
2024-04-24 12:32:09 -04:00
parent 0225955939
commit aaf9724531
4 changed files with 13 additions and 19 deletions

View File

@@ -69,6 +69,7 @@ class SNES {
bool running() const { return running_; }
auto cpu() -> Cpu& { return cpu_; }
auto ppu() -> video::Ppu& { return ppu_; }
auto apu() -> audio::Apu& { return apu_; }
auto Memory() -> memory::MemoryImpl& { return memory_; }
private: