home *** CD-ROM | disk | FTP | other *** search
- ;
- ; The Greenleaf Comm Library
- ;
- ; Copyright (C) 1990 Greenleaf Software Inc. All Rights Reserved.
- ;
- .xlist
- include model.h
- include prologue.h
- include asiports.equ
- .list
-
- extrn pcdigi:near
- extrn psdigi:near
-
- dseg _commlib
- extrn ihdptr:word
- endds
-
- pseg _asihsel
-
- ;==>-- void asihsel(int selection)
- ; Select alternate comm interrupt handler, presently only handles
- ; PS/2 digiboards, the selection parameter must be 1
- ;
- cproc asihsel
- mov ax,parm1_
- cmp ax,1
- je use_ps
- mov ax,offset pcdigi
- jmp short store_it
- use_ps: mov ax,offset psdigi
- store_it: mov ihdptr,ax
- cproce
- endps
- end
-
-