nymph/examples/minarch.h
Christopher Arndt 521fefc531 feat: add faustlpf example
Shows how to use DSP code in C generated from FAUST code

Signed-off-by: Christopher Arndt <chris@chrisarndt.de>
2024-09-29 13:47:26 +02:00

26 lines
787 B
C

/******************* BEGIN minarch.h ****************/
/************************************************************************
FAUST Architecture File for generating a very minimal C interface
************************************************************************/
#include <math.h>
#include <stdio.h>
#include "faust/gui/CInterface.h"
#define max(a,b) ((a < b) ? b : a)
#define min(a,b) ((a < b) ? a : b)
/******************************************************************************
VECTOR INTRINSICS
*******************************************************************************/
<<includeIntrinsic>>
/**************************BEGIN USER SECTION **************************/
<<includeclass>>
/***************************END USER SECTION ***************************/