chore(snd): refactor APU implementation

This commit is contained in:
2021-07-14 23:33:21 -05:00
parent 08bd33b4d4
commit ea53f97312
6 changed files with 650 additions and 592 deletions

View File

@@ -4,7 +4,8 @@ use crate::interrupt::{Interrupt, InterruptFlag};
use crate::joypad::Joypad;
use crate::ppu::{Ppu, PpuMode};
use crate::serial::Serial;
use crate::sound::{AudioSender, Sound};
use crate::sound::gen::AudioSender;
use crate::sound::Sound;
use crate::timer::Timer;
use crate::work_ram::{VariableWorkRam, WorkRam};
use std::{fs::File, io::Read};