Trait aym::AymBackend[][src]

pub trait AymBackend: Sized {
    type SoundSample: AySample + Debug;
    fn new(
        chip: SoundChip,
        mode: AyMode,
        frequency: usize,
        sample_rate: usize
    ) -> Self;
fn write_register(&mut self, address: u8, value: u8);
fn next_sample(&mut self) -> StereoSample<Self::SoundSample>; }
Expand description

Sound library generation backend.

Currently is only one backend - AymPrecise,

Associated Types

Resulting sample type

Required methods

Creates new aym instance.

frequency - frequency of the sound chip in Hz sample_rate - target device sound sample rate

Write value to the sound chip register. address should be in [0..AY_REGISTER_COUNT]

Generates next sound sample

Implementors