/*
 * date: Fri Sep  6 10:55:38 EDT 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 left of word */
#define ONEBYTE		unsigned char	/* 8 bits */
#define TWOBYTES	unsigned short	/* 16 bits */
#define FOURBYTES	unsigned long	/* 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 */
