Skip to content

Instantly share code, notes, and snippets.

@cemevin
cemevin / synthesizer.cpp
Created November 1, 2011 23:59
Synthesizer in C++
#include <fstream>
#include <iostream>
#define MIN(X,Y) ((X) < (Y) ? (X) : (Y))
#define MAX(X,Y) ((X) < (Y) ? (Y) : (X))
#define SAMPLE (44100.0)
#define BUFFER_LENGTH ((int)(SAMPLE)*10)
#define C4 (int)(SAMPLE/261.63)