/*
 * Sun 3/50 description file
 * date: Thu Aug 22 15:30:10 PDT 1991
 */
#define BITSPERWORD	32		/* 32 bits per word */
#define FORMAT		"\t0x%lxL,\n"	/* write a WORD */
#define	BYTEORDER	BIGENDIAN	/* MSB comes first */
#define	STRUCTFROMTOP			/* first in struct is right of word */
#define ONEBYTE		unsigned char	/* 8 bits */
#define TWOBYTES	unsigned short	/* 16 bits */
#define WORD		unsigned long	/* 32 bits */
#define ZERO		0L		/* 32 bits of 0 */

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

/*
 * for array accesses
 */
#define LOFFSET		2		/* unsigned longs are 4=2^2 bytes */
#define COFFSET		0		/* unsigned chars are 1=2^0 bytes */
