home *** CD-ROM | disk | FTP | other *** search
- ;
- ; QPV/386 video driver
- ; for Video Seven VRam II Revision V
- ;
- ; Contributed by: Kosmas Einbrodt, Giessen, Germany
- ; Kosmas.Einbrodt@math.uni-giessen.de
- ;
-
-
- .286
- Code Segment Para 'Code'
- Assume cs:Code
- Org 100h
-
- Procs dw Bank,Init,Exit,0
-
- Bank: push ax
- shl al,04h
- mov ah,al
- mov al,0e8h
- mov dx,03c4h
- out dx,ax
- pop ax
- retf
-
- Init: mov dx,03c4h
- mov al,06h
- out dx,al
- inc dx
- mov al,0eah
- out dx,al
- retf
-
- Exit: retf
-
- Code Ends
- End Procs
-
- ; End of source.
-