home *** CD-ROM | disk | FTP | other *** search
/ Simtel MSDOS - Coast to Coast / simteldosarchivecoasttocoast2.iso / sprint / vgawondr.zip / VGAWON.INC
Text File  |  1989-07-02  |  2KB  |  52 lines

  1. ;;--------------------------------------------------------------------------
  2. ;; ATI VGAWonder 132 column screen drivers for Sprint
  3. ;;-------------------------------------------------------------------------- 
  4. ;;
  5. ;; The ATI VGAWonder card has two 132 column modes. These can be run on 
  6. ;; most monitors.  ( I used a NEC MultisyncII to develop
  7. ;; these descriptions ).  It used to have three ( a 132x60 mode ) but that
  8. ;; was deleted in the latest release I have.  If you still have it and want
  9. ;; to use it you should be able to simply copy one of the descriptions below
  10. ;; and make the obvious changes in it.
  11. ;;
  12. ;; To access these modes simply insert this file into an appropriate location
  13. ;; in MAIN.SPL ( I inserted just before the line 
  14. ;; ';;-------------------- Printers ------------------' 
  15. ;; after all the other screen drivers ),
  16. ;; change the file names used in 'init' & 'reset' to point to 
  17. ;; your copy of VCONFIG, run SP-SETUP, choose monitor installation, select
  18. ;; VGAWonder and choose your mode.
  19. ;;
  20. ;; Each mode will return the card to VGA mode at exit.  If this is not what
  21. ;; you desire, just change the parameter passed to VCONFIG in the reset
  22. ;; string to the mode you want.
  23. ;;
  24. ;; Note: 1) the double \'s are needed to produce a single \ in the name.
  25. ;;
  26. ;; Developed and checked on ATI VGAWonder Bios V3M-1.03 on a 256K card.
  27. ;;
  28. ;; Inspired by the tecmar.inc file previously uploaded to the Sprint library.
  29. ;;
  30. ;; Created by Ken Westerback 73547,3520
  31. ;;--------------------------------------------------------------------------
  32.  
  33. screen VGAWonder, root
  34.  
  35. screen VGAWonder.Color\, 132x25,   ;; name in sp-setup is 'Color, 132x25'
  36. ;; ATI VGAWonder (V3M-1.03) 132x25 mode        
  37. ;; Set via ATI VCONFIG
  38.      as .Color25,     ;; this driver is the same as .color25
  39.     rows 25,         ;; except we have 25 rows  
  40.     cols 132,        ;; and 132 columns
  41.     init CC:\\ATIVGA2\\VCONFIG 25,
  42.     reset CC:\\ATIVGA2\\VCONFIG VGA COLOR
  43.  
  44. screen VGAWonder.Color\, 132x44,  ;; name in sp-setup is 'Color, 132x44'
  45. ;; ATI VGAWonder (V3M-1.03) 132x44 mode        
  46. ;; Set via ATI VCONFIG
  47.      as .Color25,     ;; this driver is the same as .color25
  48.     rows 44,         ;; except we have 24 rows  
  49.     cols 132,        ;; and 132 columns
  50.     init CC:\\ATIVGA2\\VCONFIG 44,
  51.     reset CC:\\ATIVGA2\\VCONFIG VGA COLOR
  52.