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

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