/*
 * Convex C-1
 * date: Thu Aug 29 09:10:38 EDT 1991
 */
#define BITSPERWORD	64		/* 64 bits per word */
#define FORMAT		"\t0x%llxLL,\n"	/* write a WORD */
#define	BYTEORDER	BIGENDIAN	/* MSB comes first */
#define	STRUCTFROMTOP			/* first in struct is left of word */
#define ONEBYTE		unsigned char	/* 8 bits */
#define TWOBYTES	unsigned short	/* 16 bits */
#define WORD		unsigned long long	/* 64 bits */
#define ZERO		0LL		/* 64 bits of 0 */

/*
 * library function which fills array with NUL bytes
 */
#define	BZERO		bzero		/* bzero(3) */

/*
 * must use indexing on this system!
 */
#define LOFFSET		0		/* do not use type punning! */
#define COFFSET		0		/* do not use type punning! */
