implement Furnace format saving

experimental and no loading yet
This commit is contained in:
tildearrow 2022-01-09 03:52:41 -05:00
parent c43cc0ae80
commit 8d9cddde37
5 changed files with 390 additions and 28 deletions

View file

@ -1,9 +1,11 @@
struct DivWavetable {
int len;
int len, min, max;
int data[32];
DivWavetable():
len(32) {
len(32),
min(0),
max(31) {
for (int i=0; i<32; i++) {
data[i]=i;
}