STOPPED
Cheatsheet
// Core t // sample index (0,1,2,...) (t/rate) // time in seconds // Bit ops & | ^ ~ // and, or, xor, not << >> >>> // shifts % // modulo // Math sin(x), cos(x), tan(x) abs(x), floor(x), ceil(x) pow(a,b), sqrt(x) // Helpers // - Keep values in 0..255 (8‑bit) or -32768..32767 (16‑bit) // - Try: (t*5&t>>7)|(t*3&t>>10) // - Or: (t>>4)*((t>>5)|(t>>8))
Bit view
No sample yet.