
/* models.h */

#ifndef MODELS_H
#define MODELS_H

/* valid currently-supported device models */

static struct _mdlz		/* private to whoever includes it (video_conf.c) */
{
	char *the_name;
	char *gdb_mon;		/* name of GDB program to monitor the device */
} model_tbl[] =
	{
	"SONY_LDP1000A","rpd_pipe",
	"DEC_VDP50",	"rpd_pipe",
	"ATHENA_4x1",	"swtr_pipe",
	"PANA_OMDR",	"rpd_pipe",
/*	"AMPEX_VPR2B",	"rpd_mon",  */
	};

#define NUM_MODELS	(sizeof(model_tbl) / sizeof(struct _mdlz))

#endif MODELS_H
