home *** CD-ROM | disk | FTP | other *** search
/ Media Gallery 1996 January / MG_0196.ISO / spea / install / stormpro / os2 / p90wos2p.dsp < prev    next >
Text File  |  1994-11-14  |  32KB  |  686 lines

  1. *****************************************************************************
  2. * FILENAME: P90WOS2P.DSP
  3. * REVISION: 1.20
  4. *     DATE: September 10, 1994
  5. *****************************************************************************
  6.  
  7. :TITLE
  8. Power 9000 WIN-OS/2 Display Driver
  9. :KEY
  10. P9000_WinOs2_Driver
  11.  
  12. :FILES :MODE=PRIMARY :MODE=WINDOWS
  13. *
  14. * WinOs2.@ is a packed file containing the following files:
  15. *
  16. *  - VgaFix.Fon
  17. *  - VgaOem.Fon
  18. *  - VgaSys.Fon
  19. *  - 8514Fix.Fon
  20. *  - 8514Oem.Fon
  21. *  - 8514Sys.Fon
  22. *
  23. \POWER_9K\WINOS2.@ %WINPATH%\SYSTEM 
  24.  
  25. *
  26. * P90SLW.@ is a packed file containing the following Seamless Win-OS2 files:
  27. *
  28. *  - P9Init.Dll
  29. *  - Sp9k_08.Drv
  30. *  - Sp9k_16.Drv
  31. *  - Sp9k_32.Drv
  32. *
  33. \POWER_9K\P90SLW.@ %WINPATH%\SYSTEM 
  34.  
  35. *
  36. * P90WOS2.@ is a packed file containing the following FullScreen Win-OS2 files:
  37. *
  38. *  - P9000_08.Drv
  39. *  - P9000_16.Drv
  40. *  - P9000_32.Drv
  41. *
  42. \POWER_9K\P90WOS2.@ %WINPATH%\SYSTEM 
  43.  
  44. *
  45. * P90Inst.@ is a packed file containing the following Win-OS2 installation files:
  46. *
  47. *  - Inst.Exe
  48. *
  49. \POWER_9K\P90INST.@ %WINPATH%
  50. \POWER_9K\P9000Res.Dat %WINPATH%
  51. \POWER_9K\P9000Res.Ini %WINPATH%
  52.  
  53. :WININI :MODE=PRIMARY :MODE=WINDOWS
  54. SYSTEM.INI
  55. *
  56. * Set the seamless windows driver.
  57. *
  58. boot sdisplay.drv sp9k_08.drv
  59. boot.description sdisplay.drv "Power 9000 Seamless Driver"
  60.  
  61. *
  62. * Set the Seamless P9000 specific entries
  63. *
  64. SP9000.DRV Font Small
  65.  
  66. *
  67. * Set the windows system fonts.
  68. * fonts.drv is used by OS/2 Full-Pack.
  69. * os2fonts.drv is used by OS/2 for Windows.
  70. *
  71. boot fonts.fon vgasys.fon
  72. boot os2fonts.fon vgasys.fon
  73.  
  74. *
  75. * Set the rest of the windows fonts.
  76. *
  77. boot fixedfon.fon vgafix.fon
  78. boot oemfonts.fon vgaoem.fon
  79.  
  80. *
  81. * Set the full screen windows driver.
  82. * display.drv is used by OS/2 Full-Pack.
  83. * fdisplay.drv is used by OS/2 for Windows.
  84. *
  85. boot display.drv p9000_08.drv
  86. boot.description display.drv "Power 9000 Full Screen Driver"
  87. boot fdisplay.drv p9000_08.drv
  88. boot.description fdisplay.drv "Power 9000 Full Screen Driver"
  89.  
  90. *
  91. * Set the P9000 specific entries
  92. *
  93. P9000.DRV Resolution 640x480
  94. P9000.DRV Refresh 60Hz
  95. P9000.DRV Font Small
  96. P9000.DRV Cursors 32
  97. P9000.DRV Palette Standard
  98. P9000.DRV DevBits Off
  99. P9000.OEM BusType DETECT
  100. P9000.OEM DacType BT485
  101. P9000.OEM MemSize 2
  102. P9000.OEM CursorUpdate On
  103. P9000.OEM Cursor Power
  104. P9000.OEM Speed 33.00mHz
  105. P9000.OEM Monitor Generic
  106. P9000.OEM DefMode 1024x768x8
  107.  
  108. ****************************************************************************
  109. *
  110. * From this point on is the modifications to be made to the OS2.INI file
  111. * in order to support updating the WIN-OS/2 Full Screen and Seamless
  112. * display drivers when using the OS/2 System Object to change the
  113. * display resolution and/or color depth.
  114. *
  115. * Notes:
  116. *  1) When this method is used, only one refresh rate per resolution will
  117. *     be able to be set.
  118. *
  119. *  2) The OS/2 System Object normally refers to the various color depths
  120. *     in terms of number of colors available rather than the number of
  121. *     bits per pixel.  However, this is not good enough for the Power
  122. *     9x00 driver because it is possible to run in either 24 Bpp mode
  123. *     or 32 Bpp mode.  Each of these modes supports the same number of
  124. *     colors however the frame buffer is organazied differently.  As a
  125. *     result, when 24 Bpp modes are supported (i.e. on a Power 9100
  126. *     board with an IBM RGB525 DAC) it is necessary to be able to
  127. *     distinguish between these two different color depths in order to
  128. *     update both the Full Screen and Seamless WIN-OS/2 drivers properly.
  129. *     As a result of this minor oversight, instead of refering to the
  130. *     display modes based on the number of colors available, the Power
  131. *     9x00 drivers will refer to the number of Bits Per Pixel.
  132. *
  133. *  3) Since this file is used for Power 9000 driver installation, and since
  134. *     the Power 9000 does not support more than 2 Mb of video memory and
  135. *     also does not support 24 Bpp, entries for 24 Bpp modes and modes
  136. *     requiring more than 2 Mb of video memory will not be added.  This
  137. *     will cut down on the amount of fudd that gets written out to the
  138. *     OS2.INI file.
  139. *
  140. ****************************************************************************
  141. :OS2INI :MODE=PRIMARY :MODE=WINDOWS
  142. OS2.INI
  143. PM_DISPLAYDRIVERS RESOLUTION_CHANGED 1
  144.  
  145. *
  146. * Define all the possible display modes.
  147. *
  148. WIN_RES_640x480x8    WIN_RES_SET    WIN_RES_P9_0
  149. WIN_RES_800x600x8    WIN_RES_SET    WIN_RES_P9_1
  150. WIN_RES_1024x768x8   WIN_RES_SET    WIN_RES_P9_2
  151. WIN_RES_1280x1024x8  WIN_RES_SET    WIN_RES_P9_3
  152. WIN_RES_1600x1200x8  WIN_RES_SET    WIN_RES_P9_4
  153. WIN_RES_640x480x16   WIN_RES_SET    WIN_RES_P9_5
  154. WIN_RES_800x600x16   WIN_RES_SET    WIN_RES_P9_6
  155. WIN_RES_1024x768x16  WIN_RES_SET    WIN_RES_P9_7
  156. WIN_RES_640x480x32   WIN_RES_SET    WIN_RES_P9_8
  157. WIN_RES_800x600x32   WIN_RES_SET    WIN_RES_P9_9
  158.  
  159. *
  160. * Define all the possible display modes using colors instead of bpp.
  161. * Note: 16M colors means 32 Bpp, NOT 24 Bpp.
  162. *
  163. "Power 9000 Mode Info"     "BPP24"        "OFF"
  164. WIN_RES_640x480x256        WIN_RES_SET    WIN_RES_P9_0
  165. WIN_RES_800x600x256        WIN_RES_SET    WIN_RES_P9_1
  166. WIN_RES_1024x768x256       WIN_RES_SET    WIN_RES_P9_2
  167. WIN_RES_1280x1024x256      WIN_RES_SET    WIN_RES_P9_3
  168. WIN_RES_1600x1200x256      WIN_RES_SET    WIN_RES_P9_4
  169. WIN_RES_640x480x65536      WIN_RES_SET    WIN_RES_P9_5
  170. WIN_RES_800x600x65536      WIN_RES_SET    WIN_RES_P9_6
  171. WIN_RES_1024x768x65536     WIN_RES_SET    WIN_RES_P9_7
  172. WIN_RES_640x480x16777216   WIN_RES_SET    WIN_RES_P9_8
  173. WIN_RES_800x600x16777216   WIN_RES_SET    WIN_RES_P9_9
  174.  
  175. *
  176. * Define modifications required for 640x480x8 60Hz.
  177. * Note: Duplicate entries at the end of the list are required
  178. *       in order to match the number of entries made during
  179. *       Power 9100 installation!!!
  180. *
  181. WIN_RES_P9_0   1  "system.ini boot sdisplay.drv sp9k_08.drv"
  182. WIN_RES_P9_0   2  "system.ini boot display.drv  p9000_08.drv"
  183. WIN_RES_P9_0   3  "system.ini boot fdisplay.drv  p9000_08.drv"
  184. WIN_RES_P9_0   4  "system.ini boot fonts.fon vgasys.fon"
  185. WIN_RES_P9_0   5  "system.ini boot fixedfon.fon vgafix.fon"
  186. WIN_RES_P9_0   6  "system.ini boot oemfonts.fon vgaoem.fon"
  187. WIN_RES_P9_0   7  "system.ini SP9000.DRV Font Small"
  188. WIN_RES_P9_0   8  "system.ini P9000.DRV Resolution 640x480"
  189. WIN_RES_P9_0   9  "system.ini P9000.DRV Refresh 60Hz"
  190. WIN_RES_P9_0   10 "system.ini P9000.DRV Font Small"
  191. WIN_RES_P9_0   11 "system.ini P9000.DRV Cursors 32"
  192. WIN_RES_P9_0   12 "system.ini P9000.DRV Palette Standard"
  193. WIN_RES_P9_0   13 "system.ini P9000.DRV DevBits Off"
  194. WIN_RES_P9_0   14 "system.ini P9000.OEM BusType DETECT"
  195. WIN_RES_P9_0   15 "system.ini P9000.OEM DacType BT485"
  196. WIN_RES_P9_0   16 "system.ini P9000.OEM MemSize 2"
  197. WIN_RES_P9_0   17 "system.ini P9000.OEM CursorUpdate On"
  198. WIN_RES_P9_0   18 "system.ini P9000.OEM Cursor Power"
  199. WIN_RES_P9_0   19 "system.ini P9000.OEM Speed 33.00mHz"
  200. WIN_RES_P9_0   20 "system.ini P9000.OEM Monitor Generic"
  201. WIN_RES_P9_0   21 "system.ini P9000.OEM DefMode 1024x768x8"
  202. WIN_RES_P9_0   22 "p9000res.ini 640x480x8 link 640x480"
  203. WIN_RES_P9_0   23 "p9000res.ini 640x480 hdr 25.17mHz"
  204. WIN_RES_P9_0   24 "p9000res.ini 640x480 hsp 96"
  205. WIN_RES_P9_0   25 "p9000res.ini 640x480 hbp 32"
  206. WIN_RES_P9_0   26 "p9000res.ini 640x480 had 640"
  207. WIN_RES_P9_0   27 "p9000res.ini 640x480 hfp 32"
  208. WIN_RES_P9_0   28 "p9000res.ini 640x480 hco 0"
  209. WIN_RES_P9_0   29 "p9000res.ini 640x480 hp  negative"
  210. WIN_RES_P9_0   30 "p9000res.ini 640x480 vlr 60Hz"
  211. WIN_RES_P9_0   31 "p9000res.ini 640x480 vsp 4"
  212. WIN_RES_P9_0   32 "p9000res.ini 640x480 vbp 24"
  213. WIN_RES_P9_0   33 "p9000res.ini 640x480 vad 480"
  214. WIN_RES_P9_0   34 "p9000res.ini 640x480 vfp 17"
  215. WIN_RES_P9_0   35 "p9000res.ini 640x480 vco 0"
  216. WIN_RES_P9_0   36 "p9000res.ini 640x480 vp  negative"
  217. WIN_RES_P9_0   37 "p9000res.ini 640x480 vp  negative"
  218. WIN_RES_P9_0   38 "p9000res.ini 640x480 vp  negative"
  219. WIN_RES_P9_0   39 "p9000res.ini 640x480 vp  negative"
  220. WIN_RES_P9_0   40 "p9000res.ini 640x480 vp  negative"
  221. WIN_RES_P9_0   41 "p9000res.ini 640x480 vp  negative"
  222. WIN_RES_P9_0   42 "p9000res.ini 640x480 vp  negative"
  223. WIN_RES_P9_0   43 "p9000res.ini 640x480 vp  negative"
  224. WIN_RES_P9_0   44 "p9000res.ini 640x480 vp  negative"
  225.  
  226. *
  227. * Define modifications required for 800x600x8 60Hz.
  228. * Note: Duplicate entries at the end of the list are required
  229. *       in order to match the number of entries made during
  230. *       Power 9100 installation!!!
  231. *
  232. WIN_RES_P9_1   1  "system.ini boot sdisplay.drv sp9k_08.drv"
  233. WIN_RES_P9_1   2  "system.ini boot display.drv  p9000_08.drv"
  234. WIN_RES_P9_1   3  "system.ini boot fdisplay.drv  p9000_08.drv"
  235. WIN_RES_P9_1   4  "system.ini boot fonts.fon vgasys.fon"
  236. WIN_RES_P9_1   5  "system.ini boot fixedfon.fon vgafix.fon"
  237. WIN_RES_P9_1   6  "system.ini boot oemfonts.fon vgaoem.fon"
  238. WIN_RES_P9_1   7  "system.ini SP9000.DRV Font Small"
  239. WIN_RES_P9_1   8  "system.ini P9000.DRV Resolution 800x600"
  240. WIN_RES_P9_1   9  "system.ini P9000.DRV Refresh 60Hz"
  241. WIN_RES_P9_1   10 "system.ini P9000.DRV Font Small"
  242. WIN_RES_P9_1   11 "system.ini P9000.DRV Cursors 32"
  243. WIN_RES_P9_1   12 "system.ini P9000.DRV Palette Standard"
  244. WIN_RES_P9_1   13 "system.ini P9000.DRV DevBits Off"
  245. WIN_RES_P9_1   14 "system.ini P9000.OEM BusType DETECT"
  246. WIN_RES_P9_1   15 "system.ini P9000.OEM DacType BT485"
  247. WIN_RES_P9_1   16 "system.ini P9000.OEM MemSize 2"
  248. WIN_RES_P9_1   17 "system.ini P9000.OEM CursorUpdate On"
  249. WIN_RES_P9_1   18 "system.ini P9000.OEM Cursor Power"
  250. WIN_RES_P9_1   19 "system.ini P9000.OEM Speed 33.00mHz"
  251. WIN_RES_P9_1   20 "system.ini P9000.OEM Monitor Generic"
  252. WIN_RES_P9_1   21 "system.ini P9000.OEM DefMode 1024x768x8"
  253. WIN_RES_P9_1   22 "p9000res.ini 800x600x8 link 800x600"
  254. WIN_RES_P9_1   23 "p9000res.ini 800x600 hdr 40mHz"
  255. WIN_RES_P9_1   24 "p9000res.ini 800x600 hsp 128"
  256. WIN_RES_P9_1   25 "p9000res.ini 800x600 hbp 88"
  257. WIN_RES_P9_1   26 "p9000res.ini 800x600 had 800"  
  258. WIN_RES_P9_1   27 "p9000res.ini 800x600 hfp 40"
  259. WIN_RES_P9_1   28 "p9000res.ini 800x600 hco 192"  
  260. WIN_RES_P9_1   29 "p9000res.ini 800x600 hp  positive"
  261. WIN_RES_P9_1   30 "p9000res.ini 800x600 vlr 60Hz"
  262. WIN_RES_P9_1   31 "p9000res.ini 800x600 vsp 4"
  263. WIN_RES_P9_1   32 "p9000res.ini 800x600 vbp 23"
  264. WIN_RES_P9_1   33 "p9000res.ini 800x600 vad 600" 
  265. WIN_RES_P9_1   34 "p9000res.ini 800x600 vfp 1"
  266. WIN_RES_P9_1   35 "p9000res.ini 800x600 vco 22"  
  267. WIN_RES_P9_1   36 "p9000res.ini 800x600 vp  positive"
  268. WIN_RES_P9_1   37 "p9000res.ini 800x600 vp  positive"
  269. WIN_RES_P9_1   38 "p9000res.ini 800x600 vp  positive"
  270. WIN_RES_P9_1   39 "p9000res.ini 800x600 vp  positive"
  271. WIN_RES_P9_1   40 "p9000res.ini 800x600 vp  positive"
  272. WIN_RES_P9_1   41 "p9000res.ini 800x600 vp  positive"
  273. WIN_RES_P9_1   42 "p9000res.ini 800x600 vp  positive"
  274. WIN_RES_P9_1   43 "p9000res.ini 800x600 vp  positive"
  275. WIN_RES_P9_1   44 "p9000res.ini 800x600 vp  positive"
  276.  
  277. *
  278. * Define modifications required for 1024x768x8 60Hz.
  279. * Note: Duplicate entries at the end of the list are required
  280. *       in order to match the number of entries made during
  281. *       Power 9100 installation!!!
  282. *
  283. WIN_RES_P9_2   1  "system.ini boot sdisplay.drv sp9k_08.drv"
  284. WIN_RES_P9_2   2  "system.ini boot display.drv  p9000_08.drv"
  285. WIN_RES_P9_2   3  "system.ini boot fdisplay.drv  p9000_08.drv"
  286. WIN_RES_P9_2   4  "system.ini boot fonts.fon 8514sys.fon"
  287. WIN_RES_P9_2   5  "system.ini boot fixedfon.fon 8514fix.fon"
  288. WIN_RES_P9_2   6  "system.ini boot oemfonts.fon 8514oem.fon"
  289. WIN_RES_P9_2   7  "system.ini SP9000.DRV Font Large"
  290. WIN_RES_P9_2   8  "system.ini P9000.DRV Resolution 1024x768"
  291. WIN_RES_P9_2   9  "system.ini P9000.DRV Refresh 60Hz"
  292. WIN_RES_P9_2   10 "system.ini P9000.DRV Font Large"
  293. WIN_RES_P9_2   11 "system.ini P9000.DRV Cursors 32"
  294. WIN_RES_P9_2   12 "system.ini P9000.DRV Palette Standard"
  295. WIN_RES_P9_2   13 "system.ini P9000.DRV DevBits Off"
  296. WIN_RES_P9_2   14 "system.ini P9000.OEM BusType DETECT"
  297. WIN_RES_P9_2   15 "system.ini P9000.OEM DacType BT485"
  298. WIN_RES_P9_2   16 "system.ini P9000.OEM MemSize 2"
  299. WIN_RES_P9_2   17 "system.ini P9000.OEM CursorUpdate On"
  300. WIN_RES_P9_2   18 "system.ini P9000.OEM Cursor Power"
  301. WIN_RES_P9_2   19 "system.ini P9000.OEM Speed 33.00mHz"
  302. WIN_RES_P9_2   20 "system.ini P9000.OEM Monitor Generic"
  303. WIN_RES_P9_2   21 "system.ini P9000.OEM DefMode 1024x768x8"
  304. WIN_RES_P9_2   22 "p9000res.ini 1024x768x8 link 1024x768"
  305. WIN_RES_P9_2   23 "p9000res.ini 1024x768 hdr 65mHz"
  306. WIN_RES_P9_2   24 "p9000res.ini 1024x768 hsp 136"
  307. WIN_RES_P9_2   25 "p9000res.ini 1024x768 hbp 160"
  308. WIN_RES_P9_2   26 "p9000res.ini 1024x768 had 1024" 
  309. WIN_RES_P9_2   27 "p9000res.ini 1024x768 hfp 24"
  310. WIN_RES_P9_2   28 "p9000res.ini 1024x768 hco 272" 
  311. WIN_RES_P9_2   29 "p9000res.ini 1024x768 hp  negative"
  312. WIN_RES_P9_2   30 "p9000res.ini 1024x768 vlr 60Hz"
  313. WIN_RES_P9_2   31 "p9000res.ini 1024x768 vsp 6"
  314. WIN_RES_P9_2   32 "p9000res.ini 1024x768 vbp 29"
  315. WIN_RES_P9_2   33 "p9000res.ini 1024x768 vad 768" 
  316. WIN_RES_P9_2   34 "p9000res.ini 1024x768 vfp 3"
  317. WIN_RES_P9_2   35 "p9000res.ini 1024x768 vco 30" 
  318. WIN_RES_P9_2   36 "p9000res.ini 1024x768 vp  negative"
  319. WIN_RES_P9_2   37 "p9000res.ini 1024x768 vp  negative"
  320. WIN_RES_P9_2   38 "p9000res.ini 1024x768 vp  negative"
  321. WIN_RES_P9_2   39 "p9000res.ini 1024x768 vp  negative"
  322. WIN_RES_P9_2   40 "p9000res.ini 1024x768 vp  negative"
  323. WIN_RES_P9_2   41 "p9000res.ini 1024x768 vp  negative"
  324. WIN_RES_P9_2   42 "p9000res.ini 1024x768 vp  negative"
  325. WIN_RES_P9_2   43 "p9000res.ini 1024x768 vp  negative"
  326. WIN_RES_P9_2   44 "p9000res.ini 1024x768 vp  negative"
  327.  
  328. *
  329. * Define modifications required for 1280x1024x8 60Hz.
  330. * Note: Duplicate entries at the end of the list are required
  331. *       in order to match the number of entries made during
  332. *       Power 9100 installation!!!
  333. *
  334. WIN_RES_P9_3   1  "system.ini boot sdisplay.drv sp9k_08.drv"
  335. WIN_RES_P9_3   2  "system.ini boot display.drv  p9000_08.drv"
  336. WIN_RES_P9_3   3  "system.ini boot fdisplay.drv  p9000_08.drv"
  337. WIN_RES_P9_3   4  "system.ini boot fonts.fon 8514sys.fon"
  338. WIN_RES_P9_3   5  "system.ini boot fixedfon.fon 8514fix.fon"
  339. WIN_RES_P9_3   6  "system.ini boot oemfonts.fon 8514oem.fon"
  340. WIN_RES_P9_3   7  "system.ini SP9000.DRV Font Large"
  341. WIN_RES_P9_3   8  "system.ini P9000.DRV Resolution 1280x1024"
  342. WIN_RES_P9_3   9  "system.ini P9000.DRV Refresh 60Hz"
  343. WIN_RES_P9_3   10 "system.ini P9000.DRV Font Large"
  344. WIN_RES_P9_3   11 "system.ini P9000.DRV Cursors 32"
  345. WIN_RES_P9_3   12 "system.ini P9000.DRV Palette Standard"
  346. WIN_RES_P9_3   13 "system.ini P9000.DRV DevBits Off"
  347. WIN_RES_P9_3   14 "system.ini P9000.OEM BusType DETECT"
  348. WIN_RES_P9_3   15 "system.ini P9000.OEM DacType BT485"
  349. WIN_RES_P9_3   16 "system.ini P9000.OEM MemSize 2"
  350. WIN_RES_P9_3   17 "system.ini P9000.OEM CursorUpdate On"
  351. WIN_RES_P9_3   18 "system.ini P9000.OEM Cursor Power"
  352. WIN_RES_P9_3   19 "system.ini P9000.OEM Speed 33.00mHz"
  353. WIN_RES_P9_3   20 "system.ini P9000.OEM Monitor Generic"
  354. WIN_RES_P9_3   21 "system.ini P9000.OEM DefMode 1024x768x8"
  355. WIN_RES_P9_3   22 "p9000res.ini 1280x1024x8 link 1280x1024"
  356. WIN_RES_P9_3   23 "p9000res.ini 1280x1024 hdr 115mHz"
  357. WIN_RES_P9_3   24 "p9000res.ini 1280x1024 hsp 224"
  358. WIN_RES_P9_3   25 "p9000res.ini 1280x1024 hbp 256"
  359. WIN_RES_P9_3   26 "p9000res.ini 1280x1024 had 1280" 
  360. WIN_RES_P9_3   27 "p9000res.ini 1280x1024 hfp 32"
  361. WIN_RES_P9_3   28 "p9000res.ini 1280x1024 hco 456" 
  362. WIN_RES_P9_3   29 "p9000res.ini 1280x1024 hp  positive"
  363. WIN_RES_P9_3   30 "p9000res.ini 1280x1024 vlr 60Hz"
  364. WIN_RES_P9_3   31 "p9000res.ini 1280x1024 vsp 3"
  365. WIN_RES_P9_3   32 "p9000res.ini 1280x1024 vbp 42"
  366. WIN_RES_P9_3   33 "p9000res.ini 1280x1024 vad 1024" 
  367. WIN_RES_P9_3   34 "p9000res.ini 1280x1024 vfp 1"
  368. WIN_RES_P9_3   35 "p9000res.ini 1280x1024 vco 41" 
  369. WIN_RES_P9_3   36 "p9000res.ini 1280x1024 vp  positive"
  370. WIN_RES_P9_3   37 "p9000res.ini 1280x1024 vp  positive"
  371. WIN_RES_P9_3   38 "p9000res.ini 1280x1024 vp  positive"
  372. WIN_RES_P9_3   39 "p9000res.ini 1280x1024 vp  positive"
  373. WIN_RES_P9_3   40 "p9000res.ini 1280x1024 vp  positive"
  374. WIN_RES_P9_3   41 "p9000res.ini 1280x1024 vp  positive"
  375. WIN_RES_P9_3   42 "p9000res.ini 1280x1024 vp  positive"
  376. WIN_RES_P9_3   43 "p9000res.ini 1280x1024 vp  positive"
  377. WIN_RES_P9_3   44 "p9000res.ini 1280x1024 vp  positive"
  378.  
  379. *
  380. * Define modifications required for 1600x1200x8 60Hz.
  381. * Note: Duplicate entries at the end of the list are required
  382. *       in order to match the number of entries made during
  383. *       Power 9100 installation!!!
  384. *
  385. WIN_RES_P9_4   1  "system.ini boot sdisplay.drv sp9k_08.drv"
  386. WIN_RES_P9_4   2  "system.ini boot display.drv  p9000_08.drv"
  387. WIN_RES_P9_4   3  "system.ini boot fdisplay.drv  p9000_08.drv"
  388. WIN_RES_P9_4   4  "system.ini boot fonts.fon 8514sys.fon"
  389. WIN_RES_P9_4   5  "system.ini boot fixedfon.fon 8514fix.fon"
  390. WIN_RES_P9_4   6  "system.ini boot oemfonts.fon 8514oem.fon"
  391. WIN_RES_P9_4   7  "system.ini SP9000.DRV Font Large"
  392. WIN_RES_P9_4   8  "system.ini P9000.DRV Resolution 1600x1200"
  393. WIN_RES_P9_4   9  "system.ini P9000.DRV Refresh 60Hz"
  394. WIN_RES_P9_4   10 "system.ini P9000.DRV Font Large"
  395. WIN_RES_P9_4   11 "system.ini P9000.DRV Cursors 32"
  396. WIN_RES_P9_4   12 "system.ini P9000.DRV Palette Standard"
  397. WIN_RES_P9_4   13 "system.ini P9000.DRV DevBits Off"
  398. WIN_RES_P9_4   14 "system.ini P9000.OEM BusType DETECT"
  399. WIN_RES_P9_4   15 "system.ini P9000.OEM DacType BT485"
  400. WIN_RES_P9_4   16 "system.ini P9000.OEM MemSize 2"
  401. WIN_RES_P9_4   17 "system.ini P9000.OEM CursorUpdate On"
  402. WIN_RES_P9_4   18 "system.ini P9000.OEM Cursor Power"
  403. WIN_RES_P9_4   19 "system.ini P9000.OEM Speed 33.00mHz"
  404. WIN_RES_P9_4   20 "system.ini P9000.OEM Monitor Generic"
  405. WIN_RES_P9_4   21 "system.ini P9000.OEM DefMode 1024x768x8"
  406. WIN_RES_P9_4   22 "p9000res.ini 1600x1200x8 link 1600x1200"
  407. WIN_RES_P9_4   23 "p9000res.ini 1600x1200 hdr 160mHz"
  408. WIN_RES_P9_4   24 "p9000res.ini 1600x1200 hsp 144"
  409. WIN_RES_P9_4   25 "p9000res.ini 1600x1200 hbp 272"
  410. WIN_RES_P9_4   26 "p9000res.ini 1600x1200 had 1600" 
  411. WIN_RES_P9_4   27 "p9000res.ini 1600x1200 hfp 32"
  412. WIN_RES_P9_4   28 "p9000res.ini 1600x1200 hco 0" 
  413. WIN_RES_P9_4   29 "p9000res.ini 1600x1200 hp  negative"
  414. WIN_RES_P9_4   30 "p9000res.ini 1600x1200 vlr 60Hz"
  415. WIN_RES_P9_4   31 "p9000res.ini 1600x1200 vsp 8"
  416. WIN_RES_P9_4   32 "p9000res.ini 1600x1200 vbp 49"
  417. WIN_RES_P9_4   33 "p9000res.ini 1600x1200 vad 1200" 
  418. WIN_RES_P9_4   34 "p9000res.ini 1600x1200 vfp 4"
  419. WIN_RES_P9_4   35 "p9000res.ini 1600x1200 vco 0" 
  420. WIN_RES_P9_4   36 "p9000res.ini 1600x1200 vp  negative"
  421. WIN_RES_P9_4   37 "p9000res.ini 1600x1200 vp  negative"
  422. WIN_RES_P9_4   38 "p9000res.ini 1600x1200 vp  negative"
  423. WIN_RES_P9_4   39 "p9000res.ini 1600x1200 vp  negative"
  424. WIN_RES_P9_4   40 "p9000res.ini 1600x1200 vp  negative"
  425. WIN_RES_P9_4   41 "p9000res.ini 1600x1200 vp  negative"
  426. WIN_RES_P9_4   42 "p9000res.ini 1600x1200 vp  negative"
  427. WIN_RES_P9_4   43 "p9000res.ini 1600x1200 vp  negative"
  428. WIN_RES_P9_4   44 "p9000res.ini 1600x1200 vp  negative"
  429.  
  430. *
  431. * Define modifications required for 640x480x16 60Hz.
  432. * Note: Duplicate entries at the end of the list are required
  433. *       in order to match the number of entries made during
  434. *       Power 9100 installation!!!
  435. *
  436. WIN_RES_P9_5   1  "system.ini boot sdisplay.drv sp9k_16.drv"
  437. WIN_RES_P9_5   2  "system.ini boot display.drv  p9000_16.drv"
  438. WIN_RES_P9_5   3  "system.ini boot fdisplay.drv  p9000_16.drv"
  439. WIN_RES_P9_5   4  "system.ini boot fonts.fon vgasys.fon"
  440. WIN_RES_P9_5   5  "system.ini boot fixedfon.fon vgafix.fon"
  441. WIN_RES_P9_5   6  "system.ini boot oemfonts.fon vgaoem.fon"
  442. WIN_RES_P9_5   7  "system.ini SP9000.DRV Font Small"
  443. WIN_RES_P9_5   8  "system.ini P9000.DRV Resolution 640x480"
  444. WIN_RES_P9_5   9  "system.ini P9000.DRV Refresh 60Hz"
  445. WIN_RES_P9_5   10 "system.ini P9000.DRV Font Small"
  446. WIN_RES_P9_5   11 "system.ini P9000.DRV Cursors 32"
  447. WIN_RES_P9_5   12 "system.ini P9000.DRV Palette Standard"
  448. WIN_RES_P9_5   13 "system.ini P9000.DRV DevBits Off"
  449. WIN_RES_P9_5   14 "system.ini P9000.OEM BusType DETECT"
  450. WIN_RES_P9_5   15 "system.ini P9000.OEM DacType BT485"
  451. WIN_RES_P9_5   16 "system.ini P9000.OEM MemSize 2"
  452. WIN_RES_P9_5   17 "system.ini P9000.OEM CursorUpdate On"
  453. WIN_RES_P9_5   18 "system.ini P9000.OEM Cursor Power"
  454. WIN_RES_P9_5   19 "system.ini P9000.OEM Speed 33.00mHz"
  455. WIN_RES_P9_5   20 "system.ini P9000.OEM Monitor Generic"
  456. WIN_RES_P9_5   21 "system.ini P9000.OEM DefMode 1024x768x8"
  457. WIN_RES_P9_5   22 "p9000res.ini 640x480x16 link 640x480"
  458. WIN_RES_P9_5   23 "p9000res.ini 640x480 hdr 25.17mHz"
  459. WIN_RES_P9_5   24 "p9000res.ini 640x480 hsp 96"
  460. WIN_RES_P9_5   25 "p9000res.ini 640x480 hbp 32"
  461. WIN_RES_P9_5   26 "p9000res.ini 640x480 had 640"
  462. WIN_RES_P9_5   27 "p9000res.ini 640x480 hfp 32"
  463. WIN_RES_P9_5   28 "p9000res.ini 640x480 hco 0"
  464. WIN_RES_P9_5   29 "p9000res.ini 640x480 hp  negative"
  465. WIN_RES_P9_5   30 "p9000res.ini 640x480 vlr 60Hz"
  466. WIN_RES_P9_5   31 "p9000res.ini 640x480 vsp 4"
  467. WIN_RES_P9_5   32 "p9000res.ini 640x480 vbp 24"
  468. WIN_RES_P9_5   33 "p9000res.ini 640x480 vad 480"
  469. WIN_RES_P9_5   34 "p9000res.ini 640x480 vfp 17"
  470. WIN_RES_P9_5   35 "p9000res.ini 640x480 vco 0"
  471. WIN_RES_P9_5   36 "p9000res.ini 640x480 vp  negative"
  472. WIN_RES_P9_5   37 "p9000res.ini 640x480 vp  negative"
  473. WIN_RES_P9_5   38 "p9000res.ini 640x480 vp  negative"
  474. WIN_RES_P9_5   39 "p9000res.ini 640x480 vp  negative"
  475. WIN_RES_P9_5   40 "p9000res.ini 640x480 vp  negative"
  476. WIN_RES_P9_5   41 "p9000res.ini 640x480 vp  negative"
  477. WIN_RES_P9_5   42 "p9000res.ini 640x480 vp  negative"
  478. WIN_RES_P9_5   43 "p9000res.ini 640x480 vp  negative"
  479. WIN_RES_P9_5   44 "p9000res.ini 640x480 vp  negative"
  480.  
  481. *
  482. * Define modifications required for 800x600x16 60Hz.
  483. * Note: Duplicate entries at the end of the list are required
  484. *       in order to match the number of entries made during
  485. *       Power 9100 installation!!!
  486. *
  487. WIN_RES_P9_6   1  "system.ini boot sdisplay.drv sp9k_16.drv"
  488. WIN_RES_P9_6   2  "system.ini boot display.drv  p9000_16.drv"
  489. WIN_RES_P9_6   3  "system.ini boot fdisplay.drv  p9000_16.drv"
  490. WIN_RES_P9_6   4  "system.ini boot fonts.fon vgasys.fon"
  491. WIN_RES_P9_6   5  "system.ini boot fixedfon.fon vgafix.fon"
  492. WIN_RES_P9_6   6  "system.ini boot oemfonts.fon vgaoem.fon"
  493. WIN_RES_P9_6   7  "system.ini SP9000.DRV Font Small"
  494. WIN_RES_P9_6   8  "system.ini P9000.DRV Resolution 800x600"
  495. WIN_RES_P9_6   9  "system.ini P9000.DRV Refresh 60Hz"
  496. WIN_RES_P9_6   10 "system.ini P9000.DRV Font Small"
  497. WIN_RES_P9_6   11 "system.ini P9000.DRV Cursors 32"
  498. WIN_RES_P9_6   12 "system.ini P9000.DRV Palette Standard"
  499. WIN_RES_P9_6   13 "system.ini P9000.DRV DevBits Off"
  500. WIN_RES_P9_6   14 "system.ini P9000.OEM BusType DETECT"
  501. WIN_RES_P9_6   15 "system.ini P9000.OEM DacType BT485"
  502. WIN_RES_P9_6   16 "system.ini P9000.OEM MemSize 2"
  503. WIN_RES_P9_6   17 "system.ini P9000.OEM CursorUpdate On"
  504. WIN_RES_P9_6   18 "system.ini P9000.OEM Cursor Power"
  505. WIN_RES_P9_6   19 "system.ini P9000.OEM Speed 33.00mHz"
  506. WIN_RES_P9_6   20 "system.ini P9000.OEM Monitor Generic"
  507. WIN_RES_P9_6   21 "system.ini P9000.OEM DefMode 1024x768x8"
  508. WIN_RES_P9_6   22 "p9000res.ini 800x600x16 link 800x600"
  509. WIN_RES_P9_6   23 "p9000res.ini 800x600 hdr 40mHz"
  510. WIN_RES_P9_6   24 "p9000res.ini 800x600 hsp 128"
  511. WIN_RES_P9_6   25 "p9000res.ini 800x600 hbp 88"
  512. WIN_RES_P9_6   26 "p9000res.ini 800x600 had 800"  
  513. WIN_RES_P9_6   27 "p9000res.ini 800x600 hfp 40"
  514. WIN_RES_P9_6   28 "p9000res.ini 800x600 hco 192"  
  515. WIN_RES_P9_6   29 "p9000res.ini 800x600 hp  positive"
  516. WIN_RES_P9_6   30 "p9000res.ini 800x600 vlr 60Hz"
  517. WIN_RES_P9_6   31 "p9000res.ini 800x600 vsp 4"
  518. WIN_RES_P9_6   32 "p9000res.ini 800x600 vbp 23"
  519. WIN_RES_P9_6   33 "p9000res.ini 800x600 vad 600" 
  520. WIN_RES_P9_6   34 "p9000res.ini 800x600 vfp 1"
  521. WIN_RES_P9_6   35 "p9000res.ini 800x600 vco 22"  
  522. WIN_RES_P9_6   36 "p9000res.ini 800x600 vp  positive"
  523. WIN_RES_P9_6   37 "p9000res.ini 800x600 vp  positive"
  524. WIN_RES_P9_6   38 "p9000res.ini 800x600 vp  positive"
  525. WIN_RES_P9_6   39 "p9000res.ini 800x600 vp  positive"
  526. WIN_RES_P9_6   40 "p9000res.ini 800x600 vp  positive"
  527. WIN_RES_P9_6   41 "p9000res.ini 800x600 vp  positive"
  528. WIN_RES_P9_6   42 "p9000res.ini 800x600 vp  positive"
  529. WIN_RES_P9_6   43 "p9000res.ini 800x600 vp  positive"
  530. WIN_RES_P9_6   44 "p9000res.ini 800x600 vp  positive"
  531.  
  532. *
  533. * Define modifications required for 1024x768x16 60Hz.
  534. * Note: Duplicate entries at the end of the list are required
  535. *       in order to match the number of entries made during
  536. *       Power 9100 installation!!!
  537. *
  538. WIN_RES_P9_7   1  "system.ini boot sdisplay.drv sp9k_16.drv"
  539. WIN_RES_P9_7   2  "system.ini boot display.drv  p9000_16.drv"
  540. WIN_RES_P9_7   3  "system.ini boot fdisplay.drv  p9000_16.drv"
  541. WIN_RES_P9_7   4  "system.ini boot fonts.fon 8514sys.fon"
  542. WIN_RES_P9_7   5  "system.ini boot fixedfon.fon 8514fix.fon"
  543. WIN_RES_P9_7   6  "system.ini boot oemfonts.fon 8514oem.fon"
  544. WIN_RES_P9_7   7  "system.ini SP9000.DRV Font Large"
  545. WIN_RES_P9_7   8  "system.ini P9000.DRV Resolution 1024x768"
  546. WIN_RES_P9_7   9  "system.ini P9000.DRV Refresh 60Hz"
  547. WIN_RES_P9_7   10 "system.ini P9000.DRV Font Large"
  548. WIN_RES_P9_7   11 "system.ini P9000.DRV Cursors 32"
  549. WIN_RES_P9_7   12 "system.ini P9000.DRV Palette Standard"
  550. WIN_RES_P9_7   13 "system.ini P9000.DRV DevBits Off"
  551. WIN_RES_P9_7   14 "system.ini P9000.OEM BusType DETECT"
  552. WIN_RES_P9_7   15 "system.ini P9000.OEM DacType BT485"
  553. WIN_RES_P9_7   16 "system.ini P9000.OEM MemSize 2"
  554. WIN_RES_P9_7   17 "system.ini P9000.OEM CursorUpdate On"
  555. WIN_RES_P9_7   18 "system.ini P9000.OEM Cursor Power"
  556. WIN_RES_P9_7   19 "system.ini P9000.OEM Speed 33.00mHz"
  557. WIN_RES_P9_7   20 "system.ini P9000.OEM Monitor Generic"
  558. WIN_RES_P9_7   21 "system.ini P9000.OEM DefMode 1024x768x8"
  559. WIN_RES_P9_7   22 "p9000res.ini 1024x768x16 link 1024x768"
  560. WIN_RES_P9_7   23 "p9000res.ini 1024x768 hdr 65mHz"
  561. WIN_RES_P9_7   24 "p9000res.ini 1024x768 hsp 136"
  562. WIN_RES_P9_7   25 "p9000res.ini 1024x768 hbp 160"
  563. WIN_RES_P9_7   26 "p9000res.ini 1024x768 had 1024" 
  564. WIN_RES_P9_7   27 "p9000res.ini 1024x768 hfp 24"
  565. WIN_RES_P9_7   28 "p9000res.ini 1024x768 hco 272" 
  566. WIN_RES_P9_7   29 "p9000res.ini 1024x768 hp  negative"
  567. WIN_RES_P9_7   30 "p9000res.ini 1024x768 vlr 60Hz"
  568. WIN_RES_P9_7   31 "p9000res.ini 1024x768 vsp 6"
  569. WIN_RES_P9_7   32 "p9000res.ini 1024x768 vbp 29"
  570. WIN_RES_P9_7   33 "p9000res.ini 1024x768 vad 768" 
  571. WIN_RES_P9_7   34 "p9000res.ini 1024x768 vfp 3"
  572. WIN_RES_P9_7   35 "p9000res.ini 1024x768 vco 30" 
  573. WIN_RES_P9_7   36 "p9000res.ini 1024x768 vp  negative"
  574. WIN_RES_P9_7   37 "p9000res.ini 1024x768 vp  negative"
  575. WIN_RES_P9_7   38 "p9000res.ini 1024x768 vp  negative"
  576. WIN_RES_P9_7   39 "p9000res.ini 1024x768 vp  negative"
  577. WIN_RES_P9_7   40 "p9000res.ini 1024x768 vp  negative"
  578. WIN_RES_P9_7   41 "p9000res.ini 1024x768 vp  negative"
  579. WIN_RES_P9_7   42 "p9000res.ini 1024x768 vp  negative"
  580. WIN_RES_P9_7   43 "p9000res.ini 1024x768 vp  negative"
  581. WIN_RES_P9_7   44 "p9000res.ini 1024x768 vp  negative"
  582.  
  583. *
  584. * Define modifications required for 640x480x32 60Hz.
  585. * Note: Duplicate entries at the end of the list are required
  586. *       in order to match the number of entries made during
  587. *       Power 9100 installation!!!
  588. *
  589. WIN_RES_P9_8   1  "system.ini boot sdisplay.drv sp9k_32.drv"
  590. WIN_RES_P9_8   2  "system.ini boot display.drv  p9000_32.drv"
  591. WIN_RES_P9_8   3  "system.ini boot fdisplay.drv  p9000_32.drv"
  592. WIN_RES_P9_8   4  "system.ini boot fonts.fon vgasys.fon"
  593. WIN_RES_P9_8   5  "system.ini boot fixedfon.fon vgafix.fon"
  594. WIN_RES_P9_8   6  "system.ini boot oemfonts.fon vgaoem.fon"
  595. WIN_RES_P9_8   7  "system.ini SP9000.DRV Font Small"
  596. WIN_RES_P9_8   8  "system.ini P9000.DRV Resolution 640x480"
  597. WIN_RES_P9_8   9  "system.ini P9000.DRV Refresh 60Hz"
  598. WIN_RES_P9_8   10 "system.ini P9000.DRV Font Small"
  599. WIN_RES_P9_8   11 "system.ini P9000.DRV Cursors 32"
  600. WIN_RES_P9_8   12 "system.ini P9000.DRV Palette Standard"
  601. WIN_RES_P9_8   13 "system.ini P9000.DRV DevBits Off"
  602. WIN_RES_P9_8   14 "system.ini P9000.OEM BusType DETECT"
  603. WIN_RES_P9_8   15 "system.ini P9000.OEM DacType BT485"
  604. WIN_RES_P9_8   16 "system.ini P9000.OEM MemSize 2"
  605. WIN_RES_P9_8   17 "system.ini P9000.OEM CursorUpdate On"
  606. WIN_RES_P9_8   18 "system.ini P9000.OEM Cursor Power"
  607. WIN_RES_P9_8   19 "system.ini P9000.OEM Speed 33.00mHz"
  608. WIN_RES_P9_8   20 "system.ini P9000.OEM Monitor Generic"
  609. WIN_RES_P9_8   21 "system.ini P9000.OEM DefMode 1024x768x8"
  610. WIN_RES_P9_8   22 "p9000res.ini 640x480x32 link 640x480"
  611. WIN_RES_P9_8   23 "p9000res.ini 640x480 hdr 25.17mHz"
  612. WIN_RES_P9_8   24 "p9000res.ini 640x480 hsp 96"
  613. WIN_RES_P9_8   25 "p9000res.ini 640x480 hbp 32"
  614. WIN_RES_P9_8   26 "p9000res.ini 640x480 had 640"
  615. WIN_RES_P9_8   27 "p9000res.ini 640x480 hfp 32"
  616. WIN_RES_P9_8   28 "p9000res.ini 640x480 hco 0"
  617. WIN_RES_P9_8   29 "p9000res.ini 640x480 hp  negative"
  618. WIN_RES_P9_8   30 "p9000res.ini 640x480 vlr 60Hz"
  619. WIN_RES_P9_8   31 "p9000res.ini 640x480 vsp 4"
  620. WIN_RES_P9_8   32 "p9000res.ini 640x480 vbp 24"
  621. WIN_RES_P9_8   33 "p9000res.ini 640x480 vad 480"
  622. WIN_RES_P9_8   34 "p9000res.ini 640x480 vfp 17"
  623. WIN_RES_P9_8   35 "p9000res.ini 640x480 vco 0"
  624. WIN_RES_P9_8   36 "p9000res.ini 640x480 vp  negative"
  625. WIN_RES_P9_8   37 "p9000res.ini 640x480 vp  negative"
  626. WIN_RES_P9_8   38 "p9000res.ini 640x480 vp  negative"
  627. WIN_RES_P9_8   39 "p9000res.ini 640x480 vp  negative"
  628. WIN_RES_P9_8   40 "p9000res.ini 640x480 vp  negative"
  629. WIN_RES_P9_8   41 "p9000res.ini 640x480 vp  negative"
  630. WIN_RES_P9_8   42 "p9000res.ini 640x480 vp  negative"
  631. WIN_RES_P9_8   43 "p9000res.ini 640x480 vp  negative"
  632. WIN_RES_P9_8   44 "p9000res.ini 640x480 vp  negative"
  633.  
  634. *
  635. * Define modifications required for 800x600x32 60Hz.
  636. * Note: Duplicate entries at the end of the list are required
  637. *       in order to match the number of entries made during
  638. *       Power 9100 installation!!!
  639. *
  640. WIN_RES_P9_9   1  "system.ini boot sdisplay.drv sp9k_32.drv"
  641. WIN_RES_P9_9   2  "system.ini boot display.drv  p9000_32.drv"
  642. WIN_RES_P9_9   3  "system.ini boot fdisplay.drv  p9000_32.drv"
  643. WIN_RES_P9_9   4  "system.ini boot fonts.fon vgasys.fon"
  644. WIN_RES_P9_9   5  "system.ini boot fixedfon.fon vgafix.fon"
  645. WIN_RES_P9_9   6  "system.ini boot oemfonts.fon vgaoem.fon"
  646. WIN_RES_P9_9   7  "system.ini SP9000.DRV Font Small"
  647. WIN_RES_P9_9   8  "system.ini P9000.DRV Resolution 800x600"
  648. WIN_RES_P9_9   9  "system.ini P9000.DRV Refresh 60Hz"
  649. WIN_RES_P9_9   10 "system.ini P9000.DRV Font Small"
  650. WIN_RES_P9_9   11 "system.ini P9000.DRV Cursors 32"
  651. WIN_RES_P9_9   12 "system.ini P9000.DRV Palette Standard"
  652. WIN_RES_P9_9   13 "system.ini P9000.DRV DevBits Off"
  653. WIN_RES_P9_9   14 "system.ini P9000.OEM BusType DETECT"
  654. WIN_RES_P9_9   15 "system.ini P9000.OEM DacType BT485"
  655. WIN_RES_P9_9   16 "system.ini P9000.OEM MemSize 2"
  656. WIN_RES_P9_9   17 "system.ini P9000.OEM CursorUpdate On"
  657. WIN_RES_P9_9   18 "system.ini P9000.OEM Cursor Power"
  658. WIN_RES_P9_9   19 "system.ini P9000.OEM Speed 33.00mHz"
  659. WIN_RES_P9_9   20 "system.ini P9000.OEM Monitor Generic"
  660. WIN_RES_P9_9   21 "system.ini P9000.OEM DefMode 1024x768x8"
  661. WIN_RES_P9_9   22 "p9000res.ini 800x600x32 link 800x600"
  662. WIN_RES_P9_9   23 "p9000res.ini 800x600 hdr 40mHz"
  663. WIN_RES_P9_9   24 "p9000res.ini 800x600 hsp 128"
  664. WIN_RES_P9_9   25 "p9000res.ini 800x600 hbp 88"
  665. WIN_RES_P9_9   26 "p9000res.ini 800x600 had 800"  
  666. WIN_RES_P9_9   27 "p9000res.ini 800x600 hfp 40"
  667. WIN_RES_P9_9   28 "p9000res.ini 800x600 hco 192"  
  668. WIN_RES_P9_9   29 "p9000res.ini 800x600 hp  positive"
  669. WIN_RES_P9_9   30 "p9000res.ini 800x600 vlr 60Hz"
  670. WIN_RES_P9_9   31 "p9000res.ini 800x600 vsp 4"
  671. WIN_RES_P9_9   32 "p9000res.ini 800x600 vbp 23"
  672. WIN_RES_P9_9   33 "p9000res.ini 800x600 vad 600" 
  673. WIN_RES_P9_9   34 "p9000res.ini 800x600 vfp 1"
  674. WIN_RES_P9_9   35 "p9000res.ini 800x600 vco 22"  
  675. WIN_RES_P9_9   36 "p9000res.ini 800x600 vp  positive"
  676. WIN_RES_P9_9   37 "p9000res.ini 800x600 vp  positive"
  677. WIN_RES_P9_9   38 "p9000res.ini 800x600 vp  positive"
  678. WIN_RES_P9_9   39 "p9000res.ini 800x600 vp  positive"
  679. WIN_RES_P9_9   40 "p9000res.ini 800x600 vp  positive"
  680. WIN_RES_P9_9   41 "p9000res.ini 800x600 vp  positive"
  681. WIN_RES_P9_9   42 "p9000res.ini 800x600 vp  positive"
  682. WIN_RES_P9_9   43 "p9000res.ini 800x600 vp  positive"
  683. WIN_RES_P9_9   44 "p9000res.ini 800x600 vp  positive"
  684.  
  685. *End of file*
  686.