Add missing $Id$'s

This commit is contained in:
chopps 1994-02-11 06:59:16 +00:00
parent 5887b43cde
commit ccd0b66d74
31 changed files with 130 additions and 43 deletions

View File

@ -31,6 +31,7 @@
* SUCH DAMAGE.
*
* @(#)Locore.c 7.4 (Berkeley) 5/7/91
* $Id: Locore.c,v 1.4 1994/02/11 06:59:16 chopps Exp $
*/
#include "../includepte.h"

View File

@ -1,5 +1,9 @@
/* Authors: Markus Wild, Bryan Ford, Niklas Hallqvist */
/* Michael L. Hitch - initial 68040 support */
/* Authors: Markus Wild, Bryan Ford, Niklas Hallqvist
* Michael L. Hitch - initial 68040 support
*
* $Id: amiga_init.c,v 1.7 1994/02/11 06:59:19 chopps Exp $
*/
#include "pte.h"
#include "machine/cpu.h"

View File

@ -38,6 +38,7 @@
* from: Utah $Hdr: autoconf.c 1.31 91/01/21$
*
* @(#)autoconf.c 7.5 (Berkeley) 5/7/91
* $Id: autoconf.c,v 1.8 1994/02/11 06:59:20 chopps Exp $
*/
/*

View File

@ -1,15 +1,34 @@
/* Copyright (c) 1993 by Integral Insights Co. All Rights Reserved */
/* --------------------------------------------------
| NAME
| cc
| PURPOSE
| main file for custom chip interface of kernel.
| NOTES
|
| HISTORY
| chopps - Oct 22, 1993: Created.
+--------------------------------------------------- */
/*
* Copyright (c) 1994 Christian E. Hopps
* 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 Christian E. Hopps.
* 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.
*
* $Id: cc.c,v 1.2 1994/02/11 06:59:21 chopps Exp $
*/
#include "cc.h"
#include "cc_copper.h"

View File

@ -1,13 +1,34 @@
/* --------------------------------------------------
| NAME
| cc
| PURPOSE
|
| NOTES
|
| HISTORY
| chopps - Oct 22, 1993: Created.
+--------------------------------------------------- */
/*
* Copyright (c) 1994 Christian E. Hopps
* 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 Christian E. Hopps.
* 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.
*
* $Id: cc.h,v 1.2 1994/02/11 06:59:23 chopps Exp $
*/
#if ! defined (_CC_H)
#define _CC_H

View File

@ -1,16 +1,19 @@
/*
this file provides an interface to CIA-generated interrupts.
Since the interrupt control register of a CIA is cleared
when it's read, it is essential that different interrupt
sources are managed from one central handler, or interrupts
can get lost.
if you write a handler dealing with a yet unused interrupt
bit (handler == not_used), enter your interrupt handler
in the appropriate table below. If your handler must poll
for an interrupt flag to come active, *always* call
dispatch_cia_ints() afterwards with bits in the mask
register your code didn't already deal with. */
* this file provides an interface to CIA-generated interrupts.
* Since the interrupt control register of a CIA is cleared
* when it's read, it is essential that different interrupt
* sources are managed from one central handler, or interrupts
* can get lost.
*
* if you write a handler dealing with a yet unused interrupt
* bit (handler == not_used), enter your interrupt handler
* in the appropriate table below. If your handler must poll
* for an interrupt flag to come active, *always* call
* dispatch_cia_ints() afterwards with bits in the mask
* register your code didn't already deal with.
*
* $Id: cia.c,v 1.2 1994/02/11 06:59:24 chopps Exp $
*/
#include "types.h"

View File

@ -24,8 +24,11 @@
* the rights to redistribute these changes.
*/
/* This is a rewrite (retype) of the Amiga's CIA chip register map, based
on the Hardware Reference Manual. It is NOT based on the Amiga's
hardware/cia.h. */
* on the Hardware Reference Manual. It is NOT based on the Amiga's
* hardware/cia.h.
*
* $Id: cia.h,v 1.5 1994/02/11 06:59:25 chopps Exp $
*/
#ifndef _amiga_cia_
#define _amiga_cia_

View File

@ -38,6 +38,7 @@
* from: Utah $Hdr: clock.c 1.18 91/01/21$
*
* @(#)clock.c 7.6 (Berkeley) 5/7/91
* $Id: clock.c,v 1.5 1994/02/11 06:59:26 chopps Exp $
*/
#include "param.h"

View File

@ -38,6 +38,7 @@
* from: Utah $Hdr: clockioctl.h 1.1 90/07/09$
*
* @(#)clockioctl.h 7.2 (Berkeley) 11/2/90
* $Id: clockioctl.h,v 1.4 1994/02/11 06:59:27 chopps Exp $
*/
#define CLOCKMAP _IOWR('C', 1, int)

View File

@ -1,4 +1,7 @@
/* some colors, handy for debugging */
/* some colors, handy for debugging
*
* $Id: color.h,v 1.4 1994/02/11 06:59:28 chopps Exp $
*/
#define COL_BLACK 0x000
#define COL_DARK_GRAY 0x444

View File

@ -31,6 +31,7 @@
* SUCH DAMAGE.
*
* @(#)conf.c 7.9 (Berkeley) 5/28/91
* $Id: conf.c,v 1.8 1994/02/11 06:59:30 chopps Exp $
*/
#include <sys/param.h>

View File

@ -1,5 +1,8 @@
/* this is the information needed by BSD that is passed into the
kernel by loadbsd. */
* kernel by loadbsd.
*
* $Id: configdev.h,v 1.2 1994/02/11 06:59:31 chopps Exp $
*/
struct ExpansionRom {
u_char er_Type;

View File

@ -38,6 +38,7 @@
* from: Utah $Hdr: cons.c 1.1 90/07/09$
*
* @(#)cons.c 7.6 (Berkeley) 5/4/91
* $Id: cons.c,v 1.5 1994/02/11 06:59:32 chopps Exp $
*/
#include "sys/param.h"

View File

@ -38,6 +38,7 @@
* from: Utah $Hdr: cons.h 1.1 90/07/09$
*
* @(#)cons.h 7.3 (Berkeley) 11/2/90
* $Id: cons.h,v 1.4 1994/02/11 06:59:33 chopps Exp $
*/
struct consdev {

View File

@ -24,8 +24,11 @@
* the rights to redistribute these changes.
*/
/* This is a rewrite (retype) of the Amiga's custom chip register map, based
on the Hardware Reference Manual. It is NOT based on the Amiga's
hardware/custom.h. */
* on the Hardware Reference Manual. It is NOT based on the Amiga's
* hardware/custom.h.
*
* $Id: custom.h,v 1.5 1994/02/11 06:59:34 chopps Exp $
*/
#ifndef _amiga_custom_
#define _amiga_custom_

View File

@ -1,3 +1,7 @@
/*
* $Id: disksubr.c,v 1.5 1994/02/11 06:59:35 chopps Exp $
*/
#include "param.h"
#include "systm.h"
#include "buf.h"

View File

@ -31,6 +31,7 @@
* SUCH DAMAGE.
*
* @(#)dkbad.c 7.2 (Berkeley) 12/16/90
* $Id: dkbad.c,v 1.4 1994/02/11 06:59:36 chopps Exp $
*/
#ifndef NOBADSECT

View File

@ -31,6 +31,7 @@
* SUCH DAMAGE.
*
* @(#)genassym.c 7.8 (Berkeley) 5/7/91
* $Id: genassym.c,v 1.6 1994/02/11 06:59:38 chopps Exp $
*/
#define KERNEL

View File

@ -31,6 +31,7 @@
* SUCH DAMAGE.
*
* @(#)isr.h 7.1 (Berkeley) 5/8/90
* $Id: isr.h,v 1.4 1994/02/11 06:59:39 chopps Exp $
*/
struct isr {

View File

@ -38,6 +38,7 @@
* from: Utah $Hdr: locore.s 1.58 91/04/22$
*
* @(#)locore.s 7.11 (Berkeley) 5/9/91
* $Id: locore.s,v 1.9 1994/02/11 06:59:42 chopps Exp $
*
* Original (hp300) Author: unknown, maybe Mike Hibler?
* Amiga author: Markus Wild

View File

@ -38,6 +38,7 @@
* from: Utah $Hdr: machdep.c 1.63 91/04/24$
*
* @(#)machdep.c 7.16 (Berkeley) 6/3/91
* $Id: machdep.c,v 1.8 1994/02/11 06:59:45 chopps Exp $
*/
#include "param.h"

View File

@ -38,6 +38,7 @@
* from: Utah $Hdr: mem.c 1.14 90/10/12$
*
* @(#)mem.c 7.5 (Berkeley) 5/7/91
* $Id: mem.c,v 1.5 1994/02/11 06:59:48 chopps Exp $
*/
/*

View File

@ -1,4 +1,7 @@
/* define memory list passed by loadbsd */
/* define memory list passed by loadbsd
*
* $Id: memlist.h,v 1.2 1994/02/11 06:59:50 chopps Exp $
*/
struct Mem_List {
u_int num_mem;

View File

@ -35,6 +35,7 @@
* SUCH DAMAGE.
*
* @(#)pmap.c 7.5 (Berkeley) 5/10/91
* $Id: pmap.c,v 1.6 1994/02/11 06:59:53 chopps Exp $
*/
/*

View File

@ -38,6 +38,7 @@
* from: Utah $Hdr: pte.h 1.11 89/09/03$
*
* @(#)pte.h 7.3 (Berkeley) 5/8/91
* $Id: pte.h,v 1.5 1994/02/11 06:59:55 chopps Exp $
*/
#ifndef _PTE_H

View File

@ -31,6 +31,7 @@
* SUCH DAMAGE.
*
* @(#)swapgeneric.c 7.5 (Berkeley) 5/7/91
* $Id: swapgeneric.c,v 1.6 1994/02/11 06:59:57 chopps Exp $
*/
#include "sys/param.h"

View File

@ -1,4 +1,5 @@
# @(#)symbols.raw 7.6 (Berkeley) 5/8/91
# $Id: symbols.raw,v 1.2 1994/02/11 07:00:01 chopps Exp $
_version
#dmesg

View File

@ -31,6 +31,7 @@
* SUCH DAMAGE.
*
* @(#)sys_machdep.c 7.7 (Berkeley) 5/7/91
* $Id: sys_machdep.c,v 1.4 1994/02/11 07:00:03 chopps Exp $
*/
#include "sys/param.h"

View File

@ -38,6 +38,7 @@
* from: Utah $Hdr: trap.c 1.32 91/04/06$
*
* @(#)trap.c 7.15 (Berkeley) 8/2/91
* $Id: trap.c,v 1.9 1994/02/11 07:00:06 chopps Exp $
*/
#include "param.h"

View File

@ -31,6 +31,7 @@
| SUCH DAMAGE.
|
| @(#)vectors.s 7.2 (Berkeley) 5/7/91
| $Id: vectors.s,v 1.4 1994/02/11 07:00:08 chopps Exp $
|
#define _fpbsun _fpfault
#define _fpinex _fpfault

View File

@ -38,6 +38,7 @@
* from: Utah $Hdr: vm_machdep.c 1.21 91/04/06$
*
* @(#)vm_machdep.c 7.10 (Berkeley) 5/7/91
* $Id: vm_machdep.c,v 1.5 1994/02/11 07:00:09 chopps Exp $
*/
#include "param.h"