Add audio namespace inside of emu

This commit is contained in:
scawful
2024-04-13 23:32:30 -05:00
parent 3effd03f1f
commit ad08d998b5
11 changed files with 32 additions and 7 deletions

View File

@@ -88,11 +88,11 @@ class SNES : public DMA {
// Components of the SNES
MemoryImpl memory_;
ClockImpl clock_;
AudioRamImpl audio_ram_;
audio::AudioRamImpl audio_ram_;
CPU cpu_{memory_, clock_};
Ppu ppu_{memory_, clock_};
Apu apu_{memory_, audio_ram_, clock_};
audio::Apu apu_{memory_, audio_ram_, clock_};
// Helper classes
ROMInfo rom_info_;