#ifndef _CONFIG_H
#define _CONFIG_H 1

typedef unsigned char  Bit8u;   /* type of 8 bit unsigned quantity */
typedef char           Bit8s;   /* type of 8 bit signed quantity */
typedef unsigned short Bit16u;  /* type of 16 bit unsigned quantity */
typedef short          Bit16s;  /* type of 16 bit signed quantity */
typedef unsigned long  Bit32u;  /* type of 32 bit unsigned quantity */
typedef long           Bit32s;  /* type of 32 bit signed quantity */
#define BX_NO_64BIT_TYPE 1
typedef unsigned long   UL;


/* --- HPUX w/ gcc --- */
/* #define HAVE_SIGACTION  1 */

#ifndef BIG_ENDIAN
#define BIG_ENDIAN 1
#endif /* ifndef BIG_ENDIAN */

#define INTERRUPT_SCALE_FACTOR 5



#define USE_INLINE

#endif  /* _CONFIG_H */
