home *** CD-ROM | disk | FTP | other *** search
/ DOS/V Power Report 1997 March / VPR9703A.ISO / OLS / DOS / Qpv17c / INSTALL.DAT / DRVSRC / DRVSRC.ZIP / STDVGA.ASM < prev    next >
Assembly Source File  |  1995-03-31  |  308b  |  23 lines

  1. ;
  2. ; QPV/386 video driver
  3. ; for standard VGA and non-supported VGA chipsets
  4. ;
  5.  
  6.         .286
  7. Code    Segment Para 'Code'
  8.         Assume  cs:Code
  9.         Org 100h
  10.  
  11. Procs   dw      Bank,Init,Exit,0
  12.  
  13. Bank:   retf
  14.  
  15. Init:   retf
  16.  
  17. Exit:   retf
  18.  
  19. Code    Ends
  20.         End Procs
  21.  
  22. ; End of source.
  23.