soundchip 0.4.3

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
#![doc = include_str!(concat!(env!("CARGO_MANIFEST_DIR"), "/readme.md"))]
#![warn(clippy::std_instead_of_core, clippy::std_instead_of_alloc)]
#![no_std]

extern crate alloc;
pub(crate) use alloc::vec::Vec;

pub mod math;

pub mod presets;

pub mod prelude;

pub(crate) mod rng;