home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
QBasic & Borland Pascal & C
/
Delphi5.iso
/
C
/
Samples
/
C-ASM_VI.ARJ
/
PROGASM.ZIP
/
PROG002.ASM
< prev
next >
Wrap
Assembly Source File
|
1988-04-10
|
593b
|
13 lines
;************************************************************************
; Load CRT register 0Ah with the value 20h *
; Faster way (too fast for some chip sets) *
;************************************************************************
Fast_Change_Underline PROC NEAR
MOV DX,3D4H ;Fetch CRTC address (assumes color)
MOV AX,200AH ;Fetch data and index
OUT DX,AX ;Select index and write data
RET
Fast_Change_Underline ENDP