home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip: Special Computer Graphics & Animation
/
Chip-Special-Computergrafik.bin
/
programs
/
viewer
/
qpeg13c.exe
/
QPEG
/
DRVSRC
/
REALTEK.ASM
< prev
next >
Wrap
Assembly Source File
|
1993-11-24
|
917b
|
30 lines
; Qpeg driver for SVGA cards with Realtek RTG 3105 chipset
; And probably other Realtek chips (This was actually written for a
; PT-505 with 512k, but should work with any RTG 3105 compatible card)
; By Christopher L. Tumber
; aa993@freenet.carleton.ca
.286
Code Segment Para 'Code'
Assume cs:Code
Org 100h
Procs dw Bank,Init,Exit,0
Bank:
mov dx,3d7h ;RTG CPU R/W port
out dx,al
retf
Init:
retf
Exit:
retf
Code Ends
End Procs
; Whew! Complicated eh?