Unused now.
This commit is contained in:
parent
f388d47b3b
commit
b9b7830d05
@ -1,27 +0,0 @@
|
|||||||
# $NetBSD: Makefile,v 1.13 1999/03/01 04:05:18 simonb Exp $
|
|
||||||
# @(#)Makefile 8.2 (Berkeley) 2/16/94
|
|
||||||
|
|
||||||
S= ${.CURDIR}/../../../..
|
|
||||||
|
|
||||||
LIB= sa
|
|
||||||
|
|
||||||
# from sys/arch/pmax/stand/libsa:
|
|
||||||
SRCS= alloc.c callvec.c devopen.c memcpy.c memset.c ufs.c
|
|
||||||
# PROM callbacks
|
|
||||||
SRCS+= bootinit.S bootread.S clear_cache.S printf.S strcat.S strcmp.S \
|
|
||||||
strcpy.S strlen.S
|
|
||||||
# from sys/lib/libsa:
|
|
||||||
SRCS+= disklabel.c dkcksum.c open.c read.c twiddle.c
|
|
||||||
|
|
||||||
.PATH: $S/lib/libsa
|
|
||||||
|
|
||||||
# set up for standalone library compiation (turn off PIC)
|
|
||||||
MKPROFILE=no
|
|
||||||
MKPIC= no
|
|
||||||
MKLINT= no
|
|
||||||
|
|
||||||
# only needed during build - prevent installation of library
|
|
||||||
libinstall::
|
|
||||||
|
|
||||||
.include <bsd.lib.mk>
|
|
||||||
.include "../Makefile.inc" # XXX after to reset CFLAGS, etc
|
|
@ -1,46 +0,0 @@
|
|||||||
/* $NetBSD: strcat.S,v 1.2 1999/03/13 11:20:56 drochner Exp $ */
|
|
||||||
|
|
||||||
/*-
|
|
||||||
* Copyright (c) 1999 The NetBSD Foundation, Inc.
|
|
||||||
* All rights reserved.
|
|
||||||
*
|
|
||||||
* Redistribution and use in source and binary forms, with or without
|
|
||||||
* modification, are permitted provided that the following conditions
|
|
||||||
* are met:
|
|
||||||
* 1. Redistributions of source code must retain the above copyright
|
|
||||||
* notice, this list of conditions and the following disclaimer.
|
|
||||||
* 2. Redistributions in binary form must reproduce the above copyright
|
|
||||||
* notice, this list of conditions and the following disclaimer in the
|
|
||||||
* documentation and/or other materials provided with the distribution.
|
|
||||||
* 3. All advertising materials mentioning features or use of this software
|
|
||||||
* must display the following acknowledgement:
|
|
||||||
* This product includes software developed by the NetBSD
|
|
||||||
* Foundation, Inc. and its contributors.
|
|
||||||
* 4. Neither the name of The NetBSD Foundation nor the names of its
|
|
||||||
* contributors may be used to endorse or promote products derived
|
|
||||||
* from this software without specific prior written permission.
|
|
||||||
*
|
|
||||||
* THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
|
|
||||||
* ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
|
|
||||||
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
|
||||||
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
|
|
||||||
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
||||||
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
||||||
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
||||||
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
||||||
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
||||||
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
||||||
* POSSIBILITY OF SUCH DAMAGE.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#include <mips/asm.h>
|
|
||||||
#include <mips/cpuregs.h>
|
|
||||||
#include <machine/dec_prom.h>
|
|
||||||
|
|
||||||
LEAF(strcat)
|
|
||||||
lw v0, _C_LABEL(callv) # get pointer to call back vectors
|
|
||||||
lw v0, 8(v0) # offset for callv->_strcat
|
|
||||||
nop
|
|
||||||
j v0 # call PROM strcat
|
|
||||||
nop
|
|
||||||
END(strcat)
|
|
Loading…
Reference in New Issue
Block a user