home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 8 Other / 08-Other.zip / font20.zip / dos.txt < prev    next >
Text File  |  1999-08-09  |  1KB  |  36 lines

  1. fast start for DOS ...
  2. what SVGA card do you have ?
  3.  
  4.                         driver file     documenation file
  5.  a) ET4000:             F20_ET40.COM    F20_ET40.TXT
  6.  b) S3 Trio32:          F20_S3TR.COM    F20_S3TR.TXT
  7.  c) other:              F20_SVGA.COM    F20_SVGA.TXT
  8.  
  9. textmode 3 (80*25) is usually 720 pixels wide (80*9=720)
  10. and 400 pixels high (25*16=400).
  11.  
  12. most newer monitors are "optimized" for 640*480 or better
  13. and look very ugly in 720*400: there is space between the lines
  14.  
  15.      720/400=1.80
  16.      640/480=1.33
  17.      800/600=1.33
  18.     1024/768=1.33
  19.  
  20. this program changes mode 3 to 720*500 (20*25=500)
  21.      720/500=1.44
  22.  
  23.  
  24. most programs call the video BIOS to set an
  25.  * 8x16 font but really want to set 25 lines, font20 loads 8x20 font
  26.  * 8x14                             28                     8x18
  27.  * 8x8                              50                     8x10
  28.  
  29. now you can read the text in 80*50 mode...
  30.  
  31. The default refresh rate for text mode on VGA displays is 70 Hz
  32. because of the change from 400 to 500 lines it would drop to 56 Hz
  33. wich is is not acceptable. To gain better refresh rate the Font20 program
  34. must also select another video clock. Look into the F20_????.TXT files
  35. what clocks are availabe for different SVGA chips.
  36.