Compare commits

..

No commits in common. "323dfd4e09921cd95cf18704e1a57d0cc9852ab3" and "c76591953a5ea89ba49883e6ecfde4a85b91dcfe" have entirely different histories.

3 changed files with 0 additions and 39 deletions

24
state.h
View File

@ -1,24 +0,0 @@
#pragma once
#include <stdint.h>
#include <stdbool.h>
#include "vco.h"
typedef struct {
float clock_bpm;
float vco_freq;
vco_mode_t vco_mode;
float vco_volume;
bool quant_enabled;
float filter_freq;
float filter_resonance;
float env1_attack;
float env1_release;
float env2_attack;
float env2_release;
float reverb_amount;
bool amen_enabled;
} state_t;
extern state_t state;

4
vco.c
View File

@ -1,4 +0,0 @@
float phase = 0.0f;
float vco(void);

11
vco.h
View File

@ -1,11 +0,0 @@
#pragma once
typedef enum {
VCO_SINE = 0,
VCO_SQUARE = 1,
VCO_TRIANGLE = 2,
VCO_SAW = 3,
} vco_mode_t;
float vco(void);