1 #define MAX_SYNTH 16
2 #define MAX_MODULES 64
3 #define MAX_PATCHES 64
4 #define MAX_PATTERN 256
5 #define MAX_PATTLENGTH 256
6 #define MAX_CHANNELS 24
7 #define MAX_SONGLEN 768
8 #define OUTPUTFREQ 44100
9 
10 // flags for notes
11 #define NOTE_LEGATO     0x0100 // tie notes together, ie. gate stays up continuously
12 #define NOTE_ACCENT     0x0200 // accent the note, ie. higher velocity than unaccented notes
13 
14