/*
 *	Program: DXFRIEND
 *	Filename:MIDITAB.C
 *
 *	Various tables
 */

#include "dx7.h"

/*
 *	A table of the maximum legal values of an operator's settings,
 *	as found in a 155-byte dump.  Derived from the DX Midi Data Spec.
 */
struct dx7operator dx7_op_max = {
	{ 99, 99, 99, 99 }, { 99, 99, 99, 99 },	/* EG rates and levels */
	99, 99, 99, 3, 3, 7,			/* KBD scales */
	3, 7, 99, 1, 31, 99, 14			/* the rest */
};

struct dx7voice dx7_voice_max = {
	{  },		/* forget operators */
	{ 99, 99, 99, 99 }, { 99, 99, 99, 99 },	/* Pitch EG */
	31, 7, 1,
	99, 99, 99, 99, 1, 4, 7, 48		/* the rest, save voice name */
};
