home *** CD-ROM | disk | FTP | other *** search
- /**
- *
- * BISR.H Header file for C TOOLS PLUS Interrupt Service Functions
- *
- * Version 3.0 (C)Copyright Blaise Computing Inc. 1986
- *
- **/
-
- #ifndef DEF_BISR /* Prevent redefinition. */
-
- #include <butility.h>
-
- struct isr_control /* ISRCTRL: ISR control block */
- { /* */
- unsigned fcall_opcode; /* NOP + Far call opcode */
- /* (0x9A90) */
- ADS isrdisp; /* Address of ISR dispatcher */
- unsigned iret_opcode; /* IRET + RETF opcodes (0xcbcf) */
- /* */
- ADS isrstk; /* Beginning of space allocated */
- /* for ISR stack(s). */
- unsigned isrstksize; /* ISR stack size */
- unsigned isrsp; /* ISR stack pointer value at */
- /* start of current ISR call */
- /* */
- unsigned isrds; /* DS value required by ISR */
- unsigned isres; /* ES value required by ISR */
- ADS isr; /* Address of ISR itself */
- unsigned isrpsp; /* PSP of program containing ISR*/
- /* */
- ADS prev_vec; /* Previous value of vector */
- /* */
- unsigned level; /* Number of calls in progress */
- /* (0 if not in use) */
- unsigned limit; /* Maximum number of nested */
- /* calls */
- unsigned signature; /* Signature identifying this */
- /* structure */
- unsigned sign2; /* One's complement of */
- /* "signature" */
- char ident[16]; /* Identifying name */
- unsigned control; /* Bit fields to control */
- /* dispatcher options */
- unsigned status; /* Status info left by */
- /* dispatcher */
- ADS ct2_isr; /* Address of C-TOOLS-2-style */
- /* ISR (used only by ISCT2INT) */
- char scratch[6]; /* Scratch space for use by */
- /* dispatcher & related */
- /* programs */
- };
- #define ISRCTRL struct isr_control
-
- /* Offsets of various items in an ISRCTRL structure. */
-
- #define ICB_ENTRY_OFFSET 0 /* Address to install in */
- /* interrupt vector. */
- #define ICB_PSP_OFFSET 24
- #define ICB_PREV_OFFSET 26
- #define ICB_SGN_OFFSET 34
- #define ICB_S2_OFFSET 36
- #define ICB_IDENT_OFFSET 38
-
- #define ICB_SIGNATURE (('0' << 8) | 'B') /* "B0" */
-
- typedef struct /* ISRMSG: structure for */
- { /* passing messages between ISR */
- /* and the dispatcher. */
- /* */
- int exit_style; /* Exit style: see possible */
- /* values below. */
- /* */
- unsigned working_flags; /* Working value of flags */
- /* register. This will be */
- /* be propagated to an ISR's */
- /* caller if the ISR returns */
- /* without doing an IRET. */
- } ISRMSG; /* */
-
- /* Exit styles from an ISR: */
- /* */
- #define IEXIT_NORMAL 0 /* Normal: return to caller */
- /* via IRET */
- /* */
- #define IEXIT_RETF 1 /* Special: return via far */
- /* RETurn */
-
- typedef struct /* DEV_HEADER: Device header */
- { /* structure available to */
- /* DOS critical error (INT 0x24)*/
- /* handlers. */
- /* */
- ADS next_dev; /* Physical address of next */
- /* device header in chain */
- /* (0xffff:0xffff if end) */
- /* */
- unsigned attr; /* Attribute bits */
- /* */
- unsigned strategy; /* Offset of "strategy" routine */
- /* */
- unsigned interrupt; /* Offset of service routine */
- /* */
- char name[8]; /* If character device, this is */
- /* its name; if block device, */
- /* name[0] is the number of */
- /* drives served by this driver.*/
- } DEV_HEADER;
-
- /* Function declarations */
-
- int isretvec(int,ADS *); /* Return interrupt vector */
- int issetvec(int,ADS *); /* Set interrupt vector */
- /* */
- int iscalint(ADS *,ALLREG *); /* Simulate software interrupt */
- int isinvint(int,DOSREG *); /* Perform a software interrupt */
- /* */
- int isinstal(int,void (*)(),char *, /* Install a C TOOLS PLUS */
- ISRCTRL *,char *,int,int); /* interrupt service routine */
- /* */
- int isdetect(int,char *, /* Detect presence of C TOOLS */
- ADS *,unsigned *); /* PLUS interrupt service */
- /* routine */
-
- /* Functions provided for compatibility with C TOOLS 2 */
-
- int isisrstk(int); /* Allocate stack space for */
- /* C TOOLS 2 ISRs */
- /* */
- int issetisr(int,unsigned (*)(), /* Install C TOOLS 2 */
- int,ADS *,ISRCTRL **); /* interrupt service routine */
-
- /* Identification string for */
- /* C TOOLS 2 ISRs */
- #define CT2ISR_IDENT "CT2/CTP ISR "
-
- /* Global variables used by ISISRSTK and ISSETISR */
-
- extern ADS b_isrstk; /* Physical address of stack */
- /* space */
- extern char *b_isrpstk; /* Pointer to next available */
- /* stack space */
- extern int b_istksize; /* Size of remaining stack space*/
-
-
- #define DEF_BISR 1 /* Prevent second reading of */
- /* these definitions. */
-
- #endif /* Ends "#ifndef DEF_BISR" */