home *** CD-ROM | disk | FTP | other *** search
- /*computer.h - contains definitions for the specific computer being used
-
- These definitions are for the IBM PC/XT/AT
-
- DATE: April 2, 1987
- VERSION: v4.12
-
- */
-
- #define RW_QSCRN 25 /*number of rows on PC video screen */
- #define CO_QMAX 80 /*max number of cols on PC video scr. */
- #define CO_80 80 /*80 columns in display */
- #define CO_40 40 /*40 columns in display */
- #define V_OFFSET 0 /*offset of the video regen buffer */
- #define MONO_SEG 0xB000 /*monochrome board video segment */
- #define GRPH_SEG 0xB800 /*graphics board video segment */
- #define BYTES_80 4096 /*number of bytes on page in 80 cols */
- #define BYTES_40 2048 /*number of bytes on page in 40 cols */
- #define EGA43ROWS 43 /*number of rows on EGA screen */
- #define EGA43PBYTES 8192 /*number of bytes on page in 43 rows */
-
- /*----------------------------------------------------------------------------*/
- /* For use with vid_mode(): parameters as defined in DOS 2.0 MODE */
- /*----------------------------------------------------------------------------*/
- #define BW40 0
- #define CO40 1
- #define BW80 2
- #define CO80 3
- #define MONO 7
- #define MONOMODE 7 /*for some reason we ended up with */
- /*both of these definitions */
-
- /*----------------------------------------------------------------------------*/
- /* The following are definitions for the DOS interrupt routines INT21h */
- /*----------------------------------------------------------------------------*/
- #define DOS_INT 0x21
- #define GET_DATE 0x2a00
- #define GET_TIME 0x2c00
-
- /*----------------------------------------------------------------------------*/
- /*The following are definitions for the video interrupt routines INT10H */
- /*----------------------------------------------------------------------------*/
- #define VI_INT 0x10 /*video interrupt number */
- #define VI_MODE 0x0 /*set mode */
- #define VI_CSR_TYPE 0x0100 /*set cursor type */
- #define VI_PL_CSR 0x0200 /*place cursor */
- #define VI_RD_CSR 0x0300 /*read cursor positions */
- #define VI_SET_DP 0x0500 /*set active display page */
- #define VI_UPSCROLL 0x0600 /*scroll up */
- #define VI_DNSCROLL 0x0700 /*scroll down */
- #define VI_RD_CHATT 0x0800 /*read char-att at csr position */
- #define VI_WR_CHATT 0x0900 /*write char-att at csr position */
- #define VI_COLOR 0x0B00 /*set color pallette or border */
- #define VI_WR_TTY 0X0E00 /*write teletype char at csr pos */
- #define VI_VSTATE 0x0F00 /*current video state */
-
- /*----------------------------------------------------------------------------*/
- /*The following are for the keyboard interrupt routines INT 16H */
- /*----------------------------------------------------------------------------*/
- #define KI_INT 0X16 /*keyboard interrupt number */
- #define KI_READ 0x0 /*read buffer */
- #define KI_CHECK 0x0100 /*check buffer */
-
- /*----------------------------------------------------------------------------*/
- /*The following definitions are for control of attribute bytes on MSDOS */
- /*systems. */
- /* */
- /* Attribute values for the Monochrome Adapter */
- /*----------------------------------------------------------------------------*/
- #define NORMAL 0x07 /*attribute base state */
- #define UNDERLINE 0x01 /* ditto */
- #define REVERSE 0x70 /* ditto */
- #define HIGH_INT 0x08 /*attribute added state */
- #define BLINK 0x80 /*attribute added state */
-
- /*----------------------------------------------------------------------------*/
- /* Color attribute values for use with the Color/Graphics Adapter */
- /*----------------------------------------------------------------------------*/
- #define BLACK 0
- #define BLUE 1
- #define GREEN 2
- #define CYAN 3
- #define RED 4
- #define MAGENTA 5
- #define BROWN 6
- #define WHITE 7
-
- #define LIGHT 8
- #define YELLOW 14 /* = LIGHT + BROWN */
-
- /*----------------------------------------------------------------------------*/
- /* defines values for block-graphics characters */
- /*----------------------------------------------------------------------------*/
- #define LIGHT_SHADE 178 /*lightest shading character */
- #define MEDIUM_SHADE 177 /*medium shading character */
- #define DARK_SHADE 176 /*dark shading character */
- #define SOLID 219 /*solid bar character */
-
-
-
-
-
-
- /*----------------------------------------------------------------------------*/
- /* Defines key values used in Window functions */
- /*----------------------------------------------------------------------------*/
- #define K_BACK 8
- #define K_TAB 9
- #define K_LINE 10
- #define K_ENTER 13
- #define K_ESC 27
- #define K_SPACE 32
-
- /*----------------------------------------------------------------------------*/
- /* IBM INT 16H returns the following key code as "extended codes" */
- /* WFC keyboard functions, ki(), ki_chk(), and ki_cum() return negative codes */
- /*----------------------------------------------------------------------------*/
- #define K_CBREAK 1
-
- #define K_STAB 15
-
- #define K_F1 59
- #define K_F2 60
- #define K_F3 61
- #define K_F4 62
- #define K_F5 63
- #define K_F6 64
- #define K_F7 65
- #define K_F8 66
- #define K_F9 67
- #define K_F10 68
-
- #define K_SF1 84
- #define K_SF2 85
- #define K_SF3 86
- #define K_SF4 87
- #define K_SF5 88
- #define K_SF6 89
- #define K_SF7 90
- #define K_SF8 91
- #define K_SF9 92
- #define K_SF10 93
- #define K_CF1 94
- #define K_CF2 95
- #define K_CF3 96
- #define K_CF4 97
- #define K_CF5 98
- #define K_CF6 99
- #define K_CF7 100
- #define K_CF8 101
- #define K_CF9 102
- #define K_CF10 103
- #define K_AF1 104
- #define K_AF2 105
- #define K_AF3 106
- #define K_AF4 107
- #define K_AF5 108
- #define K_AF6 109
- #define K_AF7 110
- #define K_AF8 111
- #define K_AF9 112
- #define K_AF10 113
-
-
- #define K_HOME 71
- #define K_UP 72
- #define K_PGUP 73
- #define K_LEFT 75
- #define K_RIGHT 77
- #define K_END 79
- #define K_DN 80
- #define K_PGDN 81
- #define K_INS 82
- #define K_DEL 83
-
- #define K_CLEFT 115
- #define K_CRIGHT 116
- #define K_CEND 117
- #define K_CPGDN 118
- #define K_CHOME 119
- #define K_CPGUP 132
-
-
- /*----------------------------------------------------------------------------*/
- /* Definitions for the standard terminal interface */
- /*----------------------------------------------------------------------------*/