ENTRY()
This commit is contained in:
parent
47410d3a5a
commit
9af8d0bdad
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: movstrSI.S,v 1.1 2000/06/09 04:42:24 msaitoh Exp $ */
|
||||
/* $NetBSD: movstrSI.S,v 1.2 2001/02/14 18:14:37 msaitoh Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 2000 SHIMIZU Ryo. All rights reserved.
|
||||
|
@ -26,60 +26,54 @@
|
|||
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
.globl ___movstrSI64, ___movstrSI60, ___movstrSI56, ___movstrSI52
|
||||
.globl ___movstrSI48, ___movstrSI44, ___movstrSI40, ___movstrSI36
|
||||
.globl ___movstrSI32, ___movstrSI28, ___movstrSI24, ___movstrSI20
|
||||
.globl ___movstrSI16, ___movstrSI12, ___movstrSI8, ___movstrSI4
|
||||
#include <machine/asm.h>
|
||||
|
||||
.text
|
||||
.align 2
|
||||
|
||||
___movstrSI64:
|
||||
ENTRY(__movstrSI64)
|
||||
mov.l @(60,r5),r0
|
||||
mov.l r0,@(60,r4)
|
||||
___movstrSI60:
|
||||
ENTRY(__movstrSI60)
|
||||
mov.l @(56,r5),r0
|
||||
mov.l r0,@(56,r4)
|
||||
___movstrSI56:
|
||||
ENTRY(__movstrSI56)
|
||||
mov.l @(52,r5),r0
|
||||
mov.l r0,@(52,r4)
|
||||
___movstrSI52:
|
||||
ENTRY(__movstrSI52)
|
||||
mov.l @(48,r5),r0
|
||||
mov.l r0,@(48,r4)
|
||||
___movstrSI48:
|
||||
ENTRY(__movstrSI48)
|
||||
mov.l @(44,r5),r0
|
||||
mov.l r0,@(44,r4)
|
||||
___movstrSI44:
|
||||
ENTRY(__movstrSI44)
|
||||
mov.l @(40,r5),r0
|
||||
mov.l r0,@(40,r4)
|
||||
___movstrSI40:
|
||||
ENTRY(__movstrSI40)
|
||||
mov.l @(36,r5),r0
|
||||
mov.l r0,@(36,r4)
|
||||
___movstrSI36:
|
||||
ENTRY(__movstrSI36)
|
||||
mov.l @(32,r5),r0
|
||||
mov.l r0,@(32,r4)
|
||||
___movstrSI32:
|
||||
ENTRY(__movstrSI32)
|
||||
mov.l @(28,r5),r0
|
||||
mov.l r0,@(28,r4)
|
||||
___movstrSI28:
|
||||
ENTRY(__movstrSI28)
|
||||
mov.l @(24,r5),r0
|
||||
mov.l r0,@(24,r4)
|
||||
___movstrSI24:
|
||||
ENTRY(__movstrSI24)
|
||||
mov.l @(20,r5),r0
|
||||
mov.l r0,@(20,r4)
|
||||
___movstrSI20:
|
||||
ENTRY(__movstrSI20)
|
||||
mov.l @(16,r5),r0
|
||||
mov.l r0,@(16,r4)
|
||||
___movstrSI16:
|
||||
ENTRY(__movstrSI16)
|
||||
mov.l @(12,r5),r0
|
||||
mov.l r0,@(12,r4)
|
||||
___movstrSI12:
|
||||
ENTRY(__movstrSI12)
|
||||
mov.l @(8,r5),r0
|
||||
mov.l r0,@(8,r4)
|
||||
___movstrSI8:
|
||||
ENTRY(__movstrSI8)
|
||||
mov.l @(4,r5),r0
|
||||
mov.l r0,@(4,r4)
|
||||
___movstrSI4:
|
||||
ENTRY(__movstrSI4)
|
||||
mov.l @r5,r0
|
||||
rts
|
||||
mov.l r0,@r4
|
||||
|
|
Loading…
Reference in New Issue