home *** CD-ROM | disk | FTP | other *** search
/ PC Extra Super CD 1998 January / PCPLUS131.iso / DJGPP / V2 / DJLSR201.ZIP / src / libc / pc_hw / endian / ntohl.s < prev    next >
Encoding:
Text File  |  1995-02-26  |  189 b   |  11 lines

  1. /* Copyright (C) 1995 DJ Delorie, see COPYING.DJ for details */
  2. #include <libc/asmdefs.h>
  3.  
  4.     FUNC(_ntohl)
  5.  
  6.     movl    4(%esp), %eax
  7.     xchgb    %ah, %al
  8.     rorl    $16, %eax
  9.     xchgb    %ah, %al
  10.     ret
  11.