home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 19 / CD_ASCQ_19_010295.iso / vrac / 0151ter2.zip / 0151TER2._XE / rar / DOCS.EXE / CUSTOM.DOC < prev    next >
Text File  |  1994-02-09  |  3KB  |  107 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 to another mode if you like. Normally
  8. you would 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 when
  10. leaving 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 ScreenColumns 80,132 etc. It
  15. will then look in the BIOS area $0040:$0085 for the screenlength. If this
  16. does not work, you can force Terminate to use a fixed screenlength by using
  17. a command line parameter called /SCRLEN=xxx /SCRCOL=xxx.   xxx are the
  18. lines/columns you want Terminate to think you are using.
  19.  
  20. In the following sets of registers, the first set is normally used as reset
  21. registers, when leaving Terminate, to set a normal 80x25 screen. All
  22. numbers are in HEX 0-F format: AX=AH*256+AL, AX=FFFE (AH=FF,AL=FE). Please
  23. send configurations if you have set up another graphics adapter. If you
  24. have a different SVGA card, you should look in your manual how to set up
  25. these modes.
  26.  
  27. SCANMODE in UTILS should find all these videomodes for you, but some
  28. videocards may need some extra information, see below:
  29.  
  30.  Video Seven FastWrite VGA & 1024i VGA
  31.  
  32.  Col/Rows  AX   BX
  33.   80x25   6F05 0003   (Reset)
  34.   80x43   6F05 0040   (Set)
  35.   80x60   6F05 0043   (Set)
  36.  100x60   6F05 0044   (Set)
  37.  132x25   6F05 0041   (Set)
  38.  132x28   6F05 0045   (Set)
  39.  132x43   6F05 0042   (Set)
  40.  
  41.  TRIDENT TVGA BIOS C.2.1 1024K VGA MODE
  42.  
  43.  Col/Rows AX+BX+CX+DX must be the same
  44.   80x25   0003 (Reset)
  45.   80x30   0050 (Set)
  46.   80x43   0051 (Set)
  47.   80x60   0052 (Set)
  48.  132x25   0053 (Set)
  49.  132x30   0058 (Set)
  50.  132x43   0059 (Set)
  51.  132x60   0056 (Set)
  52.  
  53.  TSENG ET-4000
  54.  
  55.  Col/Rows  AX
  56.   80x25   0003  (Reset)
  57.   80x60   0026  (Set)
  58.  100x40   002A  (Set)
  59.  132x25   0023  (Set)
  60.  132x28   0024  (Set)
  61.  132x44   0022  (Set)
  62.  
  63.  ATI VGA Wonder, ATI VGA Wonder+
  64.  
  65.  Col/Rows  AX
  66.   80x25   0003  (Reset)
  67.  132x25   0023  (Set)
  68.  132x44   0033  (Set)
  69.  
  70.  OAK OTI-037, 800 x 600
  71.  
  72.  Col/Rows  AX
  73.   80x25   0003  (Reset)
  74.  132x25   0050  (Set)
  75.  132x43   0051  (Set)
  76.  132x60   004F  (Set)
  77.  
  78.  XGA
  79.  
  80.  Col/Rows  AX
  81.   80x25   0003  (Reset)
  82.  132x25   0014  (Set)
  83.  
  84.  Orchid Prodesigner VGA
  85.  
  86.  Col/Rows  AX
  87.   80x25   0003 (Reset)
  88.   80x60   0026 (Set)
  89.  100x40   002A (Set)
  90.  132x25   0024 (Set)
  91.  132x28   0023 (Set)
  92.  132x44   0022 (Set)
  93.  
  94.  Tecmar VGA/AD
  95.  
  96.  Col/Rows  AX
  97.   80x25   0003 (Reset)
  98.  132x25   0017 (Set)
  99.  
  100.  Paradise VGA & S3
  101.  
  102.  Col/Rows  AX
  103.   80x25   0003 (Reset)
  104.  132x25   0055 (Set)
  105.  132x43   0054 (Set)
  106.  
  107.