home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c003 / 1.ddi / COMPUTER.H < prev    next >
Encoding:
C/C++ Source or Header  |  1987-04-01  |  6.5 KB  |  187 lines

  1. /*computer.h  - contains definitions for the specific computer being used
  2.  
  3.     These definitions are for the IBM PC/XT/AT
  4.  
  5. DATE:      April 2, 1987
  6. VERSION:  v4.12
  7.  
  8. */
  9.  
  10. #define RW_QSCRN 25            /*number of rows on PC video screen   */
  11. #define CO_QMAX 80            /*max number of cols on PC video scr. */
  12. #define CO_80 80            /*80 columns in display           */
  13. #define CO_40 40            /*40 columns in display           */
  14. #define V_OFFSET 0            /*offset of the video regen buffer    */
  15. #define MONO_SEG 0xB000         /*monochrome board video segment      */
  16. #define GRPH_SEG 0xB800         /*graphics board video segment          */
  17. #define BYTES_80 4096            /*number of bytes on page in 80 cols  */
  18. #define BYTES_40 2048            /*number of bytes on page in 40 cols  */
  19. #define EGA43ROWS 43            /*number of rows on EGA screen          */
  20. #define EGA43PBYTES 8192        /*number of bytes on page in 43 rows  */
  21.  
  22. /*----------------------------------------------------------------------------*/
  23. /* For use with vid_mode(): parameters as defined in DOS 2.0 MODE          */
  24. /*----------------------------------------------------------------------------*/
  25. #define BW40  0
  26. #define CO40  1
  27. #define BW80  2
  28. #define CO80  3
  29. #define MONO  7
  30. #define MONOMODE 7            /*for some reason we ended up with    */
  31.                     /*both of these definitions          */
  32.  
  33. /*----------------------------------------------------------------------------*/
  34. /*  The following are definitions for the DOS interrupt routines INT21h       */
  35. /*----------------------------------------------------------------------------*/
  36. #define DOS_INT 0x21
  37. #define GET_DATE 0x2a00
  38. #define GET_TIME 0x2c00
  39.  
  40. /*----------------------------------------------------------------------------*/
  41. /*The following are definitions for the video interrupt routines INT10H       */
  42. /*----------------------------------------------------------------------------*/
  43. #define VI_INT 0x10            /*video interrupt number          */
  44. #define VI_MODE 0x0            /*set mode                  */
  45. #define VI_CSR_TYPE 0x0100        /*set cursor type              */
  46. #define VI_PL_CSR 0x0200        /*place cursor                  */
  47. #define VI_RD_CSR 0x0300        /*read cursor positions           */
  48. #define VI_SET_DP 0x0500        /*set active display page          */
  49. #define VI_UPSCROLL 0x0600        /*scroll up                  */
  50. #define VI_DNSCROLL 0x0700        /*scroll down                  */
  51. #define VI_RD_CHATT 0x0800        /*read char-att at csr position       */
  52. #define VI_WR_CHATT 0x0900        /*write char-att at csr position      */
  53. #define VI_COLOR 0x0B00         /*set color pallette or border          */
  54. #define VI_WR_TTY 0X0E00        /*write teletype char at csr pos      */
  55. #define VI_VSTATE 0x0F00        /*current video state              */
  56.  
  57. /*----------------------------------------------------------------------------*/
  58. /*The following are for the keyboard interrupt routines INT 16H           */
  59. /*----------------------------------------------------------------------------*/
  60. #define KI_INT 0X16            /*keyboard interrupt number          */
  61. #define KI_READ   0x0            /*read buffer                  */
  62. #define KI_CHECK  0x0100        /*check buffer                  */
  63.  
  64. /*----------------------------------------------------------------------------*/
  65. /*The following definitions are for control of attribute bytes on MSDOS       */
  66. /*systems.                                      */
  67. /*                                          */
  68. /*  Attribute values for the Monochrome Adapter                   */
  69. /*----------------------------------------------------------------------------*/
  70. #define NORMAL 0x07            /*attribute base state              */
  71. #define UNDERLINE 0x01            /*     ditto                  */
  72. #define REVERSE 0x70            /*     ditto                  */
  73. #define HIGH_INT 0x08            /*attribute added state           */
  74. #define BLINK 0x80            /*attribute added state           */
  75.  
  76. /*----------------------------------------------------------------------------*/
  77. /* Color attribute values for use with the Color/Graphics Adapter          */
  78. /*----------------------------------------------------------------------------*/
  79. #define BLACK    0
  80. #define BLUE    1
  81. #define GREEN    2
  82. #define CYAN    3
  83. #define RED    4
  84. #define MAGENTA 5
  85. #define BROWN    6
  86. #define WHITE    7
  87.  
  88. #define LIGHT    8
  89. #define YELLOW    14            /* = LIGHT + BROWN              */
  90.  
  91. /*----------------------------------------------------------------------------*/
  92. /* defines values for block-graphics characters                   */
  93. /*----------------------------------------------------------------------------*/
  94. #define LIGHT_SHADE  178        /*lightest shading character          */
  95. #define MEDIUM_SHADE 177        /*medium shading character          */
  96. #define DARK_SHADE   176        /*dark shading character          */
  97. #define SOLID         219        /*solid bar character              */
  98.  
  99.  
  100.  
  101.  
  102.  
  103.  
  104. /*----------------------------------------------------------------------------*/
  105. /* Defines key values used in Window functions                      */
  106. /*----------------------------------------------------------------------------*/
  107. #define K_BACK 8
  108. #define K_TAB 9
  109. #define K_LINE 10
  110. #define K_ENTER 13
  111. #define K_ESC 27
  112. #define K_SPACE 32
  113.  
  114. /*----------------------------------------------------------------------------*/
  115. /* IBM INT 16H returns the following key code as "extended codes"             */
  116. /* WFC keyboard functions, ki(), ki_chk(), and ki_cum() return negative codes */
  117. /*----------------------------------------------------------------------------*/
  118. #define K_CBREAK 1
  119.  
  120. #define K_STAB 15
  121.  
  122. #define K_F1 59
  123. #define K_F2 60
  124. #define K_F3 61
  125. #define K_F4 62
  126. #define K_F5 63
  127. #define K_F6 64
  128. #define K_F7 65
  129. #define K_F8 66
  130. #define K_F9 67
  131. #define K_F10 68
  132.  
  133. #define K_SF1 84
  134. #define K_SF2 85
  135. #define K_SF3 86
  136. #define K_SF4 87
  137. #define K_SF5 88
  138. #define K_SF6 89
  139. #define K_SF7 90
  140. #define K_SF8 91
  141. #define K_SF9 92
  142. #define K_SF10 93
  143. #define K_CF1 94
  144. #define K_CF2 95
  145. #define K_CF3 96
  146. #define K_CF4 97
  147. #define K_CF5 98
  148. #define K_CF6 99
  149. #define K_CF7 100
  150. #define K_CF8 101
  151. #define K_CF9 102
  152. #define K_CF10 103
  153. #define K_AF1 104
  154. #define K_AF2 105
  155. #define K_AF3 106
  156. #define K_AF4 107
  157. #define K_AF5 108
  158. #define K_AF6 109
  159. #define K_AF7 110
  160. #define K_AF8 111
  161. #define K_AF9 112
  162. #define K_AF10 113
  163.  
  164.  
  165. #define K_HOME 71
  166. #define K_UP   72
  167. #define K_PGUP 73
  168. #define K_LEFT 75
  169. #define K_RIGHT 77
  170. #define K_END  79
  171. #define K_DN   80
  172. #define K_PGDN 81
  173. #define K_INS  82
  174. #define K_DEL  83
  175.  
  176. #define K_CLEFT   115
  177. #define K_CRIGHT  116
  178. #define K_CEND      117
  179. #define K_CPGDN   118
  180. #define K_CHOME   119
  181. #define K_CPGUP   132
  182.  
  183.  
  184. /*----------------------------------------------------------------------------*/
  185. /*  Definitions for the standard terminal interface                  */
  186. /*----------------------------------------------------------------------------*/
  187.