home *** CD-ROM | disk | FTP | other *** search
- /**
- *
- * BUTILITY.H Header file for C TOOLS PLUS Utility functions
- *
- * Version 3.0 (C)Copyright Blaise Computing Inc. 1983, 1984, 1986
- *
- **/
-
- #ifndef DEF_BUTILITY /* Prevent redefinition. */
-
- #include <compiler.h>
-
- /* Definitions of data types */
-
- struct segads /* ADS: Physical address */
- { /* expressed as segment and */
- /* offset. */
- unsigned r; /* Offset. */
- unsigned s; /* Segment. */
- };
- #define ADS struct segads
-
- struct address /* Physical address */
- { /* expressed as segment and */
- /* offset. */
- unsigned r; /* Offset. */
- unsigned s; /* Segment. */
- };
-
- typedef struct /* HALFREGS: two halves of a */
- { /* 16-bit general register. */
- unsigned char l; /* Lower 8 bits. */
- unsigned char h; /* Upper 8 bits. */
- } HALFREGS;
-
- typedef union /* DOUBLREG: Two ways to */
- { /* express a 16-bit general */
- /* register. */
- HALFREGS hl; /* Two separated halves. */
- unsigned x; /* 16-bit unsigned quantity. */
- } DOUBLREG;
-
- typedef struct /* ALLREG: complete CPU state */
- { /* (This must match version */
- /* in ISCALINT.ASM.) */
- DOUBLREG ax,bx,cx,dx; /* General registers. */
- unsigned si,di; /* Index registers. */
- unsigned ds,es,ss,cs; /* Segment registers. */
- unsigned flags,bp,sp,ip; /* Other registers. */
- } ALLREG;
-
- struct dreg /* DOSREG: registers for call */
- { /* to DOS. */
- unsigned ax,bx,cx,dx,si,di,ds,es;
- };
- #define DOSREG struct dreg
-
- /* Flag bits for use with ALLREG structure */
-
- #define CF_FLAG 0x0001 /* Carry flag */
- #define PF_FLAG 0x0002 /* Parity flag (1 means even) */
- #define AF_FLAG 0x0010 /* Auxiliary carry flag */
- #define ZF_FLAG 0x0040 /* Zero flag (1 means zero) */
- #define SF_FLAG 0x0080 /* Sign flag (1 means negative) */
- #define TF_FLAG 0x0100 /* Trap flag (1 means single */
- /* step) */
- #define IF_FLAG 0x0200 /* Interrupt enable flag */
- #define DF_FLAG 0x0400 /* Direction flag (0 means up) */
- #define OF_FLAG 0x0800 /* Overflow flag (1 means */
- /* overflow) */
- #define DEF_FLAGS (IF_FLAG) /* Commonest value for flags: */
- /* interrupts enabled, */
- /* single-stepping off, */
- /* direction up. */
-
- /* Macros to combine and extract words, bytes, and nybbles. */
-
- #define uthiword(a) (((a)>>16)&0xffffL) /* High word of long a */
- #define utloword(a) ((a)&0xffffL) /* Low word of long a */
- /* Combine high word a, */
- /* low word b: */
- #define utwdlong(a,b) ((((0xffffL&(long)(a)))<<16)|(0xffffL&(long)(b)))
-
- #define uthibyte(a) (((a)>>8)&0x00ff) /* High byte of word a */
- #define utlobyte(a) ((a)&0x00ff) /* Low byte of word a */
- /* Combine high byte a, */
- /* low word b: */
- #define utbyword(a,b) ((((a)&0x00ff)<<8)|((b)&0x00ff))
-
- #define uthinyb(a) (((a)>>4)&0x000f) /* High nybble of byte a */
- #define utlonyb(a) ((a)&0x000f) /* Low nybble of byte a */
- /* Combine high word a, */
- /* low word b: */
- #define utnybbyt(a,b) ((((a)&0x000f)<<4)|((b)&0x000f))
-
- /* Macros to perform range checking and limiting */
-
- /* Beware: the following three */
- /* macros may have side effects */
- /* because they evaluate their */
- /* arguments more than once: */
- #ifndef max
- #define max(a,b) ((a)>(b)?(a):(b)) /* Maximum of two values */
- #endif
- #ifndef min
- #define min(a,b) ((a)<=(b)?(a):(b)) /* Minimum of two values */
- #endif
- /* Return 1 if a is outside the */
- /* range defined by b and c, 0 */
- /* if not. */
- #define utrange(a,l,h) (((a)<(l))||((a)>(h)))
- #define utoutrng(a,l,h) utrange(a,l,h)
-
- /* Confine a to the range */
- /* defined by b and c. */
- #define utbound(a,b,c) \
- { \
- register int uttemp; \
- \
- if ((a) < (uttemp = (b)) || (a) > (uttemp = (c))) \
- (a) = uttemp; \
- }
-
- /* Prevent a from exceeding b. */
- #define utuplim(a,b) \
- { \
- register int uttemp; \
- \
- if ((a) > (uttemp = (b))) \
- (a) = uttemp; \
- }
-
- /* Prevent a from being less */
- /* than b. */
- #define utlowlim(a,b) \
- { \
- register int uttemp; \
- \
- if ((a) < (uttemp = (b))) \
- (a) = uttemp; \
- }
-
- /* Miscellanous convenience macros */
-
- #define NIL ((char *) 0) /* Universal invalid data */
- /* pointer. */
-
- #define utsign(a) ((a)>0?1:((a)==0?0:-1)) /* Sign of a */
- #define utalarm utsound(450,9) /* Sound for 1/2 sec */
- #define utskip printf("\n") /* CR/LF */
-
- /* Allocate and zero a data */
- /* object of a given type, */
- /* return a pointer to it. */
- #define utalloc(type) ((type *) calloc(1,sizeof(type)))
-
- /* Copy a data object, return */
- /* pointer to target. */
- #define utcopy(to,from,type) \
- ((type *) memcpy((char *) (to),(char *) (from),sizeof(type)))
-
-
- /* Compiler-specific data items */
-
- #if LAT200 | LAT210 | LAT300
- extern char _dos[2]; /* MS-DOS version number */
- #define utdosmajor (_dos[0])
- #define utdosminor (_dos[1])
- extern ADS _psp;
- #define utpspseg (_psp.s) /* Segment of PSP */
- #endif
-
- #if MSC300
- #include <stdlib.h>
- #define utdosmajor ((char) _osmajor) /* MS-DOS version number */
- #define utdosminor ((char) _osminor)
- #define utpspseg ((unsigned) _psp) /* Segment of PSP */
- #endif
-
- /* Function declarations. */
-
- int bdsx(int,int); /* DOS gate for some functions */
- /* */
- extern unsigned b_cxreg,b_dxreg; /* Used by BDSX */
- /* */
- int dos(DOSREG *); /* DOS function call */
- /* */
- int bios(unsigned,int *,int *, /* General BIOS gate */
- int *,int *,int *); /* */
- extern unsigned b_bp,b_es; /* Used by BIOS gate */
- /* */
- int utintoff(void); /* Disable (maskable) hardware */
- /* interrupts. */
- /* */
- int utinton(void); /* Enable hardware interrupts. */
- /* */
- int utslmove(ADS *,ADS *,unsigned); /* Segment memory move */
- /* */
- int utsreg(unsigned *,unsigned *, /* Return segment registers */
- unsigned *,unsigned *); /* */
- /* */
- unsigned utdefds(void); /* Return current DS register */
- /* value. */
- /* */
- int utinit(DOSREG *); /* Initialize DOSREG structure */
- /* */
- unsigned long utabsptr(char *,ADS *); /* Convert data pointer into */
- /* physical address. */
- /* */
- unsigned long utcodptr(int (*)(), /* Return physical address of */
- ADS *); /* function. */
- /* */
- float utrnd(unsigned *); /* Random number generator */
- /* */
- int utgetclk(long *); /* Get BIOS clock count. */
- /* */
- unsigned utsleep(unsigned); /* Suspend processing for a */
- /* period. */
- /* */
- int utpause(char *); /* Display message, await */
- /* keystroke. */
- /* */
- void utabort(char *); /* Abort program with message */
- /* to standard output. */
- /* */
- void utspkon(unsigned); /* Turn speaker on. */
- /* */
- void utspkoff(void); /* Turn speaker off. */
- /* */
- void utsound(unsigned,unsigned); /* Sound a tone for a period of */
- /* time. */
-
- /* Aliases for older versions */
-
- #define utrdykey(pch,pscan) (kbready(pch,pscan))
- #define utinkey(pscan) (kbin(pscan))
- #define utshfkey(pkeybd) (kbshift(pkeybd))
- #define _cxreg b_cxreg
- #define _dxreg b_dxreg
-
- #define DEF_BUTILITY 1 /* Prevent second reading of */
- /* these definitions. */
-
- #endif /* Ends "#ifndef DEF_BUTILITY" */