home *** CD-ROM | disk | FTP | other *** search
/ PC Extra Super CD 1998 January / PCPLUS131.iso / DJGPP / V2 / DJLSR201.ZIP / src / libc / pc_hw / io / isl.s < prev    next >
Encoding:
Text File  |  1995-03-21  |  245 b   |  16 lines

  1. /* Copyright (C) 1995 DJ Delorie, see COPYING.DJ for details */
  2. #define USE_EDI
  3. #include <libc/asmdefs.h>
  4.  
  5.     FUNC(_inportsl)        /* port buffer length */
  6.     ENTER
  7.  
  8.     movl    ARG1,%edx
  9.     movl    ARG2,%edi
  10.     movl    ARG3,%ecx
  11.     cld
  12.     rep
  13.     insl
  14.  
  15.     LEAVE
  16.