My reply from 17.04.2023, which I forgot to post here. All these songs have been added to the library. More new songs (after
>>812) will check later.
>>285>>310
Added to library.
>>301
Interestingly, this code cannot be considered C-compatible, since there is type mismatch with
&
operator in
3e3/(t&4095)&1
, and type casting (to long or int32_t) must be done in order for the code to be reproduced on the microcontroller. Like this:
((t*(t&t>>11))&64)+(((long)(3e3/(t&4095))&1)*100)
>>304
Heh, simple but fun remix.
>>317
The first "Arabic beat" remix, nice.
>>319
Silly but fun noise track.
>>332
Nice sound for classic formula! But multiplying to
.25
can't be considered as C-compatible without type casting. But if to replace it to dividing by 4, it will be ok:
t*((0xbadbea75>>((t>>12)&30)&3)*(0x5afe5>>((t>>16)&28)&3)/4)&128
>>343
How do you do that?
>>354
Interesting, looks like it has an echo. But why is the number
(127)
in brackets?
>>673
Ctrl+V remixes is always funny.
>>812
Wow, unexpectedly impressive sound effects! One of the best of your formulas. But again, because of the fractional number, I can't classify this as a C-compatible formula because type casting is required. Interestingly, if to replace 1.999 with 2, then the formula will stop working.