23 lines
303 B
C
23 lines
303 B
C
#pragma once
|
|
|
|
#include "state.h"
|
|
|
|
#define COMB0_SIZE 1103
|
|
#define COMB1_SIZE 1361
|
|
#define COMB2_SIZE 1499
|
|
#define COMB3_SIZE 1693
|
|
#define AP0_SIZE 131
|
|
#define AP1_SIZE 43
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void synth_init(state_t* state);
|
|
float get_sample(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|