home *** CD-ROM | disk | FTP | other *** search
/ PC Online 1996 October / PCO_10.ISO / filesbbs / terminat.arj / DOCS.EXE / CUSTOM.DOC < prev    next >
Encoding:
Text File  |  1995-08-11  |  3.0 KB  |  109 lines

  1.  
  2. ┌───────────────────────────────────────────────────────────────────────────┐
  3. │ ░░░░ Super textmodes ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ │
  4. └───────────────────────────────────────────────────────────────────────────┘
  5.  
  6.  Terminate will allow you to set up your preferred video mode at startup.
  7.  When leaving Terminate, you can reset another mode if you like. Normally
  8.  you will reset to 80x25, but you can do whatever you like. If all register
  9.  values are zero, nothing will change - so you don't have to reset everytime
  10.  you leave Terminate.
  11.  
  12.  To set the videomode, you must define at least one register such as AX = 3,
  13.  then INT 10h will be called with AX,BX,CX,DX. After the call Terminate will
  14.  call INT 10h,15 (Get Video Mode) to determine the ScreenColumns 80,132 etc.
  15.  It will then look in the BIOS area $0040:$0085 for the screenlength. If
  16.  this does not work, you can force Terminate to use a fixed screenlength by
  17.  using a command line parameter called /SCRLEN=xxx /SCRCOL=xxx.
  18.  xxx is the value for the lines/columns you want Terminate to think you are
  19.  using.
  20.  
  21.  In the following sets of registers, the first set is normally used as reset
  22.  register values, when leaving Terminate, to set a normal 80x25 screen. All
  23.  numbers are in HEX 0-F format: AX=AH*256+AL, AX=FFFE (AH=FF,AL=FE). If you
  24.  have another graphics adapter, please send us your configuration data. If
  25.  you own a different SVGA card, you should look in your manual how to set up
  26.  these modes.
  27.  
  28.  SCANMODE in the \UTILS subdirectory should find all the available
  29.  videomodes for you, but some graphics adapters may need some extra
  30.  information, such as the ones below:
  31.  
  32.  Video Seven FastWrite VGA & 1024i VGA
  33.  
  34.  Col/Rows  AX   BX
  35.   80x25   6F05 0003   (Reset)
  36.   80x43   6F05 0040   (Set)
  37.   80x60   6F05 0043   (Set)
  38.  100x60   6F05 0044   (Set)
  39.  132x25   6F05 0041   (Set)
  40.  132x28   6F05 0045   (Set)
  41.  132x43   6F05 0042   (Set)
  42.  
  43.  TRIDENT TVGA BIOS C.2.1 1024K VGA MODE
  44.  
  45.  Col/Rows AX+BX+CX+DX must be the same
  46.   80x25   0003 (Reset)
  47.   80x30   0050 (Set)
  48.   80x43   0051 (Set)
  49.   80x60   0052 (Set)
  50.  132x25   0053 (Set)
  51.  132x30   0058 (Set)
  52.  132x43   0059 (Set)
  53.  132x60   0056 (Set)
  54.  
  55.  TSENG ET-4000
  56.  
  57.  Col/Rows  AX
  58.   80x25   0003  (Reset)
  59.   80x60   0026  (Set)
  60.  100x40   002A  (Set)
  61.  132x25   0023  (Set)
  62.  132x28   0024  (Set)
  63.  132x44   0022  (Set)
  64.  
  65.  ATI VGA Wonder, ATI VGA Wonder+
  66.  
  67.  Col/Rows  AX
  68.   80x25   0003  (Reset)
  69.  132x25   0023  (Set)
  70.  132x44   0033  (Set)
  71.  
  72.  OAK OTI-037, 800 x 600
  73.  
  74.  Col/Rows  AX
  75.   80x25   0003  (Reset)
  76.  132x25   0050  (Set)
  77.  132x43   0051  (Set)
  78.  132x60   004F  (Set)
  79.  
  80.  XGA
  81.  
  82.  Col/Rows  AX
  83.   80x25   0003  (Reset)
  84.  132x25   0014  (Set)
  85.  
  86.  Orchid Prodesigner VGA
  87.  
  88.  Col/Rows  AX
  89.   80x25   0003 (Reset)
  90.   80x60   0026 (Set)
  91.  100x40   002A (Set)
  92.  132x25   0024 (Set)
  93.  132x28   0023 (Set)
  94.  132x44   0022 (Set)
  95.  
  96.  Tecmar VGA/AD
  97.  
  98.  Col/Rows  AX
  99.   80x25   0003 (Reset)
  100.  132x25   0017 (Set)
  101.  
  102.  Paradise VGA & S3
  103.  
  104.  Col/Rows  AX
  105.   80x25   0003 (Reset)
  106.  132x25   0055 (Set)
  107.  132x43   0054 (Set)
  108.  
  109.