Clean up deleted files.

This commit is contained in:
mycroft 1995-02-13 00:46:20 +00:00
parent 810d06dfa5
commit c4bc9b0b49
4 changed files with 0 additions and 241 deletions

View File

@ -1,77 +0,0 @@
/* $NetBSD: bcopy.s,v 1.2 1994/10/26 08:02:55 cgd Exp $ */
/*
* Copyright (c) 1983 Regents of the University of California.
* 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 University of
* California, Berkeley and its contributors.
* 4. Neither the name of the University 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 REGENTS 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 REGENTS 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.
*
* @(#)bcopy.s 5.6 (Berkeley) 6/1/90
*/
/* bcopy(from, to, size) */
.globl _bcopy
_bcopy: .word 0xff
movl 4(ap),r1
movl 8(ap),r3
movl 12(ap),r6
cmpl r1,r3
bgtr 2f # normal forward case
blss 3f # overlapping, must do backwards
ret # equal, nothing to do
1:
subl2 r0,r6
movc3 r0,(r1),(r3)
2:
movzwl $65535,r0
cmpl r6,r0
jgtr 1b
movc3 r6,(r1),(r3)
ret
3:
addl2 r6,r1
addl2 r6,r3
movzwl $65535,r0
jbr 5f
4:
subl2 r0,r6
subl2 r0,r1
subl2 r0,r3
movc3 r0,(r1),(r3)
movzwl $65535,r0
subl2 r0,r1
subl2 r0,r3
5:
cmpl r6,r0
jgtr 4b
subl2 r6,r1
subl2 r6,r3
movc3 r6,(r1),(r3)
ret

View File

@ -1,111 +0,0 @@
/* $NetBSD: cpu_machdep.c,v 1.3 1994/11/25 19:09:50 ragge Exp $ */
/*
* Copyright (c) 1994 Ludd, University of Lule}, Sweden.
* 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 at Ludd, University of Lule}.
* 4. The name of the author may not be used to endorse or promote products
* derived from this software without specific prior written permission
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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.
*/
/* All bugs are subject to removal without further notice */
#include "machine/cpu.h"
#include "machine/sid.h"
#include "machine/param.h"
#include "machine/loconf.h"
#include "sys/types.h"
#include "machine/param.h"
#include "machine/vmparam.h"
#include "vm/vm.h"
int cpu_notsupp(),cpu_notgen();
#ifdef VAX750
int v750_loinit();
#endif
struct cpu_dep cpu_calls[VAX_MAX+1]={
/* Type 0,noexist */
cpu_notsupp,cpu_notsupp,cpu_notsupp,cpu_notsupp,
#ifdef VAX780 /* Type 1, 11/{780,782,785} */
cpu_notsupp,cpu_notsupp,cpu_notsupp,cpu_notsupp,
#else
cpu_notsupp,cpu_notsupp,cpu_notsupp,cpu_notsupp,
#endif
#ifdef VAX750 /* Type 2, 11/750 */
v750_loinit,cpu_notgen,cpu_notgen,cpu_notgen,
#else
cpu_notgen,cpu_notgen,cpu_notgen,cpu_notgen,
#endif
#ifdef VAX730 /* Type 3, 11/{730,725}, ceauciesco-vax */
cpu_notsupp,cpu_notsupp,cpu_notsupp,cpu_notsupp,
#else
cpu_notsupp,cpu_notsupp,cpu_notsupp,cpu_notsupp,
#endif
#ifdef VAX8600 /* Type 4, 8600/8650 (11/{790,795}) */
cpu_notsupp,cpu_notsupp,cpu_notsupp,cpu_notsupp,
#else
cpu_notsupp,cpu_notsupp,cpu_notsupp,cpu_notsupp,
#endif
#ifdef VAX8200 /* Type 5, 8200, 8300, 8350 */
cpu_notsupp,cpu_notsupp,cpu_notsupp,cpu_notsupp,
#else
cpu_notsupp,cpu_notsupp,cpu_notsupp,cpu_notsupp,
#endif
#ifdef VAX8800 /* Type 6, 85X0, 8700, 88X0 */
cpu_notsupp,cpu_notsupp,cpu_notsupp,cpu_notsupp,
#else
cpu_notsupp,cpu_notsupp,cpu_notsupp,cpu_notsupp,
#endif
#ifdef VAX610 /* Type 7, KA610 */
cpu_notsupp,cpu_notsupp,cpu_notsupp,cpu_notsupp,
#else
cpu_notsupp,cpu_notsupp,cpu_notsupp,cpu_notsupp,
#endif
#ifdef VAX630 /* Type 8, KA630 (uVAX II) */
cpu_notsupp,cpu_notsupp,cpu_notsupp,cpu_notsupp,
#else
cpu_notsupp,cpu_notsupp,cpu_notsupp,cpu_notsupp,
#endif
/* Type 9, not used */
cpu_notsupp,cpu_notsupp,cpu_notsupp,cpu_notsupp,
#ifdef VAX650 /* Type 10, KA65X (uVAX III) */
cpu_notsupp,cpu_notsupp,cpu_notsupp,cpu_notsupp,
#else
cpu_notsupp,cpu_notsupp,cpu_notsupp,cpu_notsupp,
#endif
};
cpu_notgen()
{
conout("This cputype not generated.\n");
asm("halt");
}
cpu_notsupp()
{
conout("This cputype not supported.\n");
asm("halt");
}

View File

@ -1,29 +0,0 @@
/* $NetBSD: glue.c,v 1.2 1994/10/26 08:03:06 cgd Exp $ */
/* This glue file will go away SOON! */
#include "vax/include/pte.h"
#include "sys/param.h"
#include "sys/buf.h"
#include "sys/map.h"
#include "vax/uba/ubavar.h"
#define C (caddr_t)
extern struct uba_driver udadriver;
extern udaintr();
extern struct uba_driver dedriver;
extern deintr();
struct uba_ctlr ubminit[] = {
{ &udadriver,0,'?',0,udaintr, C 0172150 },
0
};
struct uba_device ubdinit[] = {
{ &udadriver,0,0,'?',0,0,C 00,1,0x0},
{ &dedriver,0,-1,'?',-1,deintr,C 0174510,0,0x0},
0
};

View File

@ -1,24 +0,0 @@
/* $NetBSD: skit.c,v 1.5 1994/11/25 19:10:00 ragge Exp $ */
/*
* This file shouldn't exist; it contains all undefines that currently is.
* (even undefined pointers, bleh!) It is actually created from an awk
* script taking input from ld :)
* Things are taken away as soon they are implemented.
*/
cpu_coredump(){conout(" cpu_coredump \n");asm("halt");
cpu_swapin(){conout(" cpu_swapin \n");asm("halt");}
ifubareset(){conout(" ifubareset \n");asm("halt");}
chrtoblk(){conout(" chrtoblk \n");asm("halt");}
isdisk(){conout(" isdisk \n");asm("halt");}
iskmemdev(){conout(" iskmemdev \n");asm("halt");}
fuibyte (){conout(" fuibyte \n");asm("halt");}
fuswintr(){conout("fuswintr\n");asm("halt");}
iszerodev(){conout("iszerodev\n");asm("halt");}
need_proftick(){conout("need_proftick\n");asm("halt");}
pmap_phys_address(){conout(" pmap_phys_address\n");asm("halt");}
process_set_pc (){conout(" process_set_pc \n");asm("halt");}
process_sstep (){conout(" process_sstep \n");asm("halt");}
resuba (){conout(" resuba \n");asm("halt");} /* When to use this??? */
suibyte (){conout(" suibyte \n");asm("halt");}
suswintr(){conout("suswintr\n");asm("halt");}