chore(apu): rename sound/snd to apu
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2021-07-14 23:45:01 -05:00
parent ea53f97312
commit a1eadc0bc4
6 changed files with 63 additions and 63 deletions

View File

@@ -1,10 +1,11 @@
pub use apu::gen::AudioMPSC;
pub use gui::Egui;
pub use instruction::Cycle;
pub use sound::gen::AudioMPSC;
pub const GB_WIDTH: usize = 160;
pub const GB_HEIGHT: usize = 144;
mod apu;
mod bus;
mod cartridge;
mod cpu;
@@ -16,6 +17,5 @@ mod interrupt;
mod joypad;
mod ppu;
mod serial;
mod sound;
mod timer;
mod work_ram;