home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
GameStar 1998 November (Bonus)
/
GAMESTAR11B.ISO
/
Diverses
/
QPV17E
/
INSTALL.DAT
/
DRVSRC
/
DRVSRC.ZIP
/
AHEADB.ASM
< prev
next >
Wrap
Assembly Source File
|
1995-03-31
|
560b
|
37 lines
;
; QPV/386 video driver
; for VGA graphics cards based on Ahead-B chipsets.
; Should work with Ahead-B _only_.
; Provided by Guy Desrosiers.
;
.286
Code Segment Para 'Code'
Assume cs:Code
Org 100h
Procs dw Bank,Init,Exit,0
Bank: push ax
push cx
mov ch,al
mov dx,3ceh
mov ax,200fh
out dx,ax
mov ah,ch
mov cl,4
shl ah,cl
or ah,ch
mov al,0dh
out dx,ax
pop cx
pop ax
retf
Init: retf
Exit: retf
Code Ends
End Procs