home *** CD-ROM | disk | FTP | other *** search
/ Software of the Month Club 1995 March / SOFM_Mar1995.bin / pc / dtp / qpeg / install.dat / DRVSRC / ET4000.ASM < prev    next >
Assembly Source File  |  1994-05-01  |  551b  |  34 lines

  1. ;
  2. ; QPEG video driver
  3. ; for Tseng Labs ET4000 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:   mov     dl,al
  14.         shl     al,4
  15.         or      al,dl
  16.         mov     dx,03cdh
  17.         out     dx,al
  18.         retf
  19.  
  20. Init:   mov     dx,03bfh
  21.         mov     al,03h
  22.         out     dx,al
  23.         mov     dl,0d8h
  24.         mov     al,0a0h
  25.         out     dx,al
  26.         retf
  27.  
  28. Exit:   retf
  29.  
  30. Code    Ends
  31.         End Procs
  32.  
  33. ; End of source.
  34.