tinychip 0.1.1

CHIP-8 emulator/interpreter
Documentation
1
2
3
4
5
6
7
/// Audio controller
pub trait Audio {
    /// Resume the beep sound
    fn resume_beep(&mut self);
    /// Pause the beep sound
    fn pause_beep(&mut self);
}