soundchip 0.4.61

Software sinth with configurable channels for authentic sounding virtual sound chips.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use crate::prelude::*;

pub const SPEC_PITCH_CLEAN: SpecsPitch = SpecsPitch {
    multiplier: 1.0,
    range: None,
    steps: None,
};

pub const SPEC_PITCH_PSG: SpecsPitch = SpecsPitch {
    multiplier: 1.0,
    range: Some(16.35 ..= 16744.04),
    steps: Some(4096),
};

pub const SPEC_PITCH_SCC:SpecsPitch = SPEC_PITCH_PSG;