home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / pascal / library / dos / grafik / et3000 / readme.doc < prev   
Encoding:
Text File  |  1990-10-31  |  3.7 KB  |  110 lines

  1. Thomas Greve
  2. Clemens August Straße 53
  3. D 5300 Bonn 1
  4. Germany
  5.  
  6. eMail:    greve@dbnpib5.bitnet
  7.  
  8.  
  9.  
  10. Here you have what you wanted to have ever since you bought
  11. your TSENG-chip based VGA card: a .BGI driver for its 256
  12. color modes! This driver supports the following modes:
  13.  
  14.     Mode    Resolution    Video-Mem required
  15.      0     320x200     256K
  16.      1     640x480     512K
  17.      2     800x600     512K
  18.  
  19. If you want to use it, make sure, you really own a VGA-card
  20. with a TSENG chip ET3000 on it and it is really equipped
  21. with 512K (16 chips 41464). If there are 8 of these chips
  22. and 8 empty sockets, go buying another 8. They're about
  23. $2.50 each ($20 total) these days.
  24.   The driver itself doesn't test if it can handle the VGA
  25. card in your computer. So if you are not sure, remove the
  26. cover of your computer... (see your VGA manual for details
  27. on how to remove the cover.)
  28.   This driver will work on '286+ machines only. Even on a
  29. 12MHz AT it will be a bit slow - there are MBytes of data
  30. to be moved and the ET3000 allows a maximum data transfer
  31. rate of 250 KByte/s. (It is not the driver nor the computer,
  32. that limits speed!)
  33.  
  34.  
  35. DISCLAIMER:
  36.  
  37.   Of course, I do not take any warranty whatsoever for this
  38. driver, neither expressed nor implied etc, etc... Especially
  39. I don't take any warranty that it works with your VGA, that
  40. it doesn't screw up your monitor or that your VGA must be
  41. equipped with 41464 RAMs.
  42.  
  43.   You may use this driver for your personal purposes only.
  44. If you copy it for your friends, upload it to bulletin
  45. boards etc., please include this readme-file. I won't give
  46. any technical support. If you want to sell this driver with
  47. your application programs, please contact me.
  48.  
  49.  
  50. ANNOUNCEMENT:
  51.  
  52.   If you own a '386 computer, you may get a '386-Version of
  53. this driver: it supports 32 bit line patterns (useful in
  54. 800x600+ modes!) and uses some '386 codes.
  55.   If you have a ET4000 based VGA card, this driver won't run
  56. on it properly. You may get an ET4K Version of this driver
  57. with an additional 1024x768 mode ('286 or '386 version, see
  58. above) as well. 1 MB video mem is required for this mode.
  59.   If you want one of the above drivers, send me a $10-cheque
  60. ($15 outside Europe, 15DM inside Germany) and i'll send you
  61. the driver. Please note the chipset (ET3K/ET4K) the CPU type
  62. and the disk format (5 1/4" or 3 1/2").
  63. For $20 ($25 outside Europe) you can get all of the three
  64. drivers.
  65.  
  66.  
  67.  
  68. INSTALLATION:
  69.  
  70.   Due to a bug in the GRAPH unit this driver has to be
  71. installed as follows:
  72.  
  73. var
  74.   Driver, Mode : integer;
  75.  
  76. { ... }
  77.  
  78.   Driver := InstallUserDriver('ET3000', nil) + 5;       { the 5 is necessary }
  79.   Mode := Mode_Of_Your_Choice;                { due to the bug... }
  80.   InitGraph(driver, Mode, GraphPath);
  81.  
  82.   if GraphResult < 0 then begin
  83.     Writeln('ERROR: ET3000 driver not installed!');
  84.     Halt(1);
  85.   end;
  86.  
  87. { ... }
  88.  
  89. NOTES: - GetMaxColor returns 255, but SetColor(GetMaxColor);
  90.      may yield in unpredictible results, since the
  91.      colors 248..255 are not initialized by default.
  92.        - GetModeRange doesn't work for third party drivers.
  93.      You've got to use GetMaxMode instead.
  94.        - FloodFill doesn't work with 256 color modes (as it
  95.      doesn't with the IBM8514 driver supplied by
  96.      BORLAND). Don't ask me why. Maybe it works with the
  97.      next release of TP.
  98.        - XORput isn't implemented (Except for PutImage).
  99.        - CharSize of DefaultFont is 8*16. The driver gets
  100.      this font from your VGA-BIOS. If garbage appears
  101.      on the screen, it's a bug of your VGA-BIOS.
  102.        - Any suggestions about improvements are welcome. Bug
  103.      reports are useless since there aren't any bugs.
  104.      ;-)
  105.        - ...
  106.  
  107. Credits: Terje Thoegersen has tested this driver thoroughly,
  108.      i thank him for his never-ending patience when
  109.      waiting for the next (beta-)release.
  110.