home *** CD-ROM | disk | FTP | other *** search
- page 60,132
- ;
- ; The Greenleaf Comm Library
- ;
- ; Copyright (C) 1984-90 Greenleaf Software Inc. All Rights Reserved.
- ;
-
- .xlist
- include model.h
- include prologue.h
- include asiports.equ
- .list
-
- pseg _asidiag
-
-
- ;**<< _ A S I D I A G >>**
- ;
- ; void _asidiag( ioaddress, ctrl )
- ;
- ; Turn diagnostic mode explicitly ON or OFF.
- ;
- cproc _asidiag,,,,,<NOSI,NODI>
- mov dx,parm1_
- add dx,MCREG ; address modem ctrl reg
- cli
- in al,dx ; read current value
- KILL_TIME ;Rest the 8250 for a while
- and al,not LOOPIT ; assume turning off
- test word ptr parm2_,1 ;check assumption
- jz setdtr ;if turning off
- or al,LOOPIT ;assummed wrong
- setdtr: out dx,al ;set 8250
- KILL_TIME
- sti
- xor ax,ax ;for consistency
- cproce
- endps
- end
-