xref: /csrg-svn/lib/libc/vax/net/htonl.s (revision 61235)
121441Sdist/*
2*61235Sbostic * Copyright (c) 1983, 1993
3*61235Sbostic *	The Regents of the University of California.  All rights reserved.
434814Sbostic *
542637Sbostic * %sccs.include.redist.c%
621441Sdist */
721441Sdist
834814Sbostic#if defined(LIBC_SCCS) && !defined(lint)
9*61235Sbostic	.asciz "@(#)htonl.s	8.1 (Berkeley) 06/04/93"
1034814Sbostic#endif /* LIBC_SCCS and not lint */
1121441Sdist
129713Ssam/* netorder = htonl(hostorder) */
139713Ssam
149713Ssam#include "DEFS.h"
159713Ssam
1634425SmckusickENTRY(htonl, 0)
179713Ssam	rotl	$-8,4(ap),r0
189713Ssam	insv	r0,$16,$8,r0
199713Ssam	movb	7(ap),r0
209713Ssam	ret
21