You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
271 B
16 lines
271 B
#include "synth_shed.h"
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
int main() {
|
|
init_synth_shed();
|
|
|
|
synth_t* my_synth = synth_create("UltraBoog");
|
|
printf("%s", play_synth(my_synth));
|
|
|
|
synth_set_osc_count(my_synth, 33);
|
|
printf("%s", play_synth(my_synth));
|
|
|
|
return 0;
|
|
}
|
|
|