From f12e249c73f021d57d69d5f93d27e03259982edf Mon Sep 17 00:00:00 2001 From: /dev/urandom Date: Sat, 15 Feb 2025 01:46:19 +0100 Subject: feat: Marquee, Lower dither opacity at top, DVD Logo should be separate function, Release Builds should work, advance_width should be f64 to save bytes, Vendor Micromod-RS, Add Timing Steps --- src/vendored/micromod-rs/consts.rs | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 src/vendored/micromod-rs/consts.rs (limited to 'src/vendored/micromod-rs/consts.rs') diff --git a/src/vendored/micromod-rs/consts.rs b/src/vendored/micromod-rs/consts.rs new file mode 100644 index 0000000..092766d --- /dev/null +++ b/src/vendored/micromod-rs/consts.rs @@ -0,0 +1,11 @@ +pub static MICROMOD_VERSION: &str = "Micromod Protracker replay 20180625 (c)mumart@gmail.com"; +pub static FINE_TUNING: [u16; 16] = [ + 4340, 4308, 4277, 4247, 4216, 4186, 4156, 4126, 4096, 4067, 4037, 4008, 3979, 3951, 3922, 3894, +]; +pub static ARP_TUNING: [u16; 16] = [ + 4096, 3866, 3649, 3444, 3251, 3069, 2896, 2734, 2580, 2435, 2299, 2170, 2048, 1933, 1825, 1722, +]; +pub static SINE_TABLE: [u8; 32] = [ + 0, 24, 49, 74, 97, 120, 141, 161, 180, 197, 212, 224, 235, 244, 250, 253, 255, 253, 250, 244, + 235, 224, 212, 197, 180, 161, 141, 120, 97, 74, 49, 24, +]; -- cgit v1.2.3