Adjust for changes in asm.h.

This commit is contained in:
mycroft 2000-12-12 07:35:39 +00:00
parent 5e6430ffd8
commit 0878972b4c
2 changed files with 8 additions and 12 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: byte_swap_2.S,v 1.2 1999/01/22 09:13:17 mycroft Exp $ */
/* $NetBSD: byte_swap_2.S,v 1.3 2000/12/12 07:35:39 mycroft Exp $ */
/*-
* Copyright (c) 1999 The NetBSD Foundation, Inc.
@ -38,11 +38,9 @@
#include <machine/asm.h>
_BEGIN_ENTRY;
_ENTRY(_C_FUNC(__bswap16));
_ENTRY(_C_FUNC(ntohs));
_ENTRY(_C_FUNC(htons));
_END_ENTRY
ENTRY(__bswap16)
ALTENTRY(ntohs)
ALTENTRY(htons)
and r1, r0, #0xFF00
mov r0, r0, lsl #8
orr r0, r0, r1, lsr #8

View File

@ -1,4 +1,4 @@
/* $NetBSD: byte_swap_4.S,v 1.1 1999/01/15 13:31:17 bouyer Exp $ */
/* $NetBSD: byte_swap_4.S,v 1.2 2000/12/12 07:35:40 mycroft Exp $ */
/*-
* Copyright (c) 1997 The NetBSD Foundation, Inc.
@ -38,11 +38,9 @@
#include <machine/asm.h>
_BEGIN_ENTRY;
_ENTRY(_C_FUNC(__bswap32));
_ENTRY(_C_FUNC(ntohl));
_ENTRY(_C_FUNC(htonl));
_END_ENTRY
ENTRY(__bswap32)
ALTENTRY(ntohl)
ALTENTRY(htonl)
eor r1, r0, r0, ror #16
bic r1, r1, #0x00FF0000
mov r0, r0, ror #8