forked from Imagelibrary/rtems
added $Id$ string to file header
This commit is contained in:
@@ -26,7 +26,7 @@
|
|||||||
* to the copyright license under the clause at DFARS 252.227-7013. This
|
* to the copyright license under the clause at DFARS 252.227-7013. This
|
||||||
* notice must appear in all copies of this file and its derivatives.
|
* notice must appear in all copies of this file and its derivatives.
|
||||||
*
|
*
|
||||||
* console.c,v 1.4 1995/12/05 19:23:02 joel Exp
|
* $Id$
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -1,3 +1,6 @@
|
|||||||
|
/*
|
||||||
|
* $Id$
|
||||||
|
*/
|
||||||
|
|
||||||
#include <rtems/score/iregdef.h>
|
#include <rtems/score/iregdef.h>
|
||||||
#include <rtems/score/idtmon.h>
|
#include <rtems/score/idtmon.h>
|
||||||
|
|||||||
@@ -12,7 +12,7 @@
|
|||||||
* to the copyright license under the clause at DFARS 252.227-7013. This
|
* to the copyright license under the clause at DFARS 252.227-7013. This
|
||||||
* notice must appear in all copies of this file and its derivatives.
|
* notice must appear in all copies of this file and its derivatives.
|
||||||
*
|
*
|
||||||
* bsp.h,v 1.4 1995/09/11 19:29:04 joel Exp
|
* $Id$
|
||||||
*/
|
*/
|
||||||
/* @(#)bsp.h 03/15/96 1.1 */
|
/* @(#)bsp.h 03/15/96 1.1 */
|
||||||
|
|
||||||
@@ -62,6 +62,12 @@ extern unsigned32 mips_get_timer( void );
|
|||||||
/*
|
/*
|
||||||
* Simple spin delay in microsecond units for device drivers.
|
* Simple spin delay in microsecond units for device drivers.
|
||||||
* This is very dependent on the clock speed of the target.
|
* This is very dependent on the clock speed of the target.
|
||||||
|
*
|
||||||
|
* NOTE: This macro generates a warning like "integer constant out
|
||||||
|
* of range" which is safe to ignore. In 64 bit mode, unsigned32
|
||||||
|
* types are actually 64 bits long so that comparisons between
|
||||||
|
* unsigned32 types and pointers are valid. The warning is caused
|
||||||
|
* by code in the delay macro that is necessary for 64 bit mode.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#define delay( microseconds ) \
|
#define delay( microseconds ) \
|
||||||
|
|||||||
@@ -22,7 +22,7 @@
|
|||||||
* to the copyright license under the clause at DFARS 252.227-7013. This
|
* to the copyright license under the clause at DFARS 252.227-7013. This
|
||||||
* notice must appear in all copies of this file and its derivatives.
|
* notice must appear in all copies of this file and its derivatives.
|
||||||
*
|
*
|
||||||
* coverhd.h,v 1.2 1995/05/31 16:56:15 joel Exp
|
* $Id$
|
||||||
*/
|
*/
|
||||||
/* @(#)coverhd.h 04/08/96 1.3 */
|
/* @(#)coverhd.h 04/08/96 1.3 */
|
||||||
|
|
||||||
|
|||||||
@@ -1,3 +1,7 @@
|
|||||||
|
/*
|
||||||
|
* $Id$
|
||||||
|
*/
|
||||||
|
|
||||||
#include <rtems/score/iregdef.h>
|
#include <rtems/score/iregdef.h>
|
||||||
#include <rtems/score/idtcpu.h>
|
#include <rtems/score/idtcpu.h>
|
||||||
|
|
||||||
|
|||||||
@@ -15,8 +15,9 @@
|
|||||||
* to the copyright license under the clause at DFARS 252.227-7013. This
|
* to the copyright license under the clause at DFARS 252.227-7013. This
|
||||||
* notice must appear in all copies of this file and its derivatives.
|
* notice must appear in all copies of this file and its derivatives.
|
||||||
*
|
*
|
||||||
* bspclean.c,v 1.2 1995/05/31 16:56:27 joel Exp
|
* $Id$
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef lint
|
#ifndef lint
|
||||||
static char _sccsid[] = "@(#)bspclean.c 03/15/96 1.1\n";
|
static char _sccsid[] = "@(#)bspclean.c 03/15/96 1.1\n";
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
@@ -20,6 +20,8 @@ two paragraphs in the transferred software.
|
|||||||
COPYRIGHT IDT CORPORATION 1996
|
COPYRIGHT IDT CORPORATION 1996
|
||||||
LICENSED MATERIAL - PROGRAM PROPERTY OF IDT
|
LICENSED MATERIAL - PROGRAM PROPERTY OF IDT
|
||||||
|
|
||||||
|
$Id$
|
||||||
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/************************************************************************
|
/************************************************************************
|
||||||
@@ -39,8 +41,6 @@ LICENSED MATERIAL - PROGRAM PROPERTY OF IDT
|
|||||||
#include <rtems/score/iregdef.h>
|
#include <rtems/score/iregdef.h>
|
||||||
#include <rtems/score/idtcpu.h>
|
#include <rtems/score/idtcpu.h>
|
||||||
#include <rtems/score/idtmon.h>
|
#include <rtems/score/idtmon.h>
|
||||||
/* #include <rtems/score/saunder.h> XXX - missing*/
|
|
||||||
|
|
||||||
|
|
||||||
.data
|
.data
|
||||||
mem_size:
|
mem_size:
|
||||||
|
|||||||
@@ -1,4 +1,7 @@
|
|||||||
/* @(#)linkcmds 04/08/96 1.2 */
|
/*
|
||||||
|
* $Id$
|
||||||
|
*/
|
||||||
|
|
||||||
OUTPUT_FORMAT("elf32-bigmips")
|
OUTPUT_FORMAT("elf32-bigmips")
|
||||||
OUTPUT_ARCH(mips)
|
OUTPUT_ARCH(mips)
|
||||||
/* Do we need any of these for elf?
|
/* Do we need any of these for elf?
|
||||||
|
|||||||
@@ -20,7 +20,7 @@
|
|||||||
* to the copyright license under the clause at DFARS 252.227-7013. This
|
* to the copyright license under the clause at DFARS 252.227-7013. This
|
||||||
* notice must appear in all copies of this file and its derivatives.
|
* notice must appear in all copies of this file and its derivatives.
|
||||||
*
|
*
|
||||||
* setvec.c,v 1.2 1995/05/31 16:56:35 joel Exp
|
* $Id$
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef lint
|
#ifndef lint
|
||||||
|
|||||||
@@ -26,7 +26,7 @@
|
|||||||
* to the copyright license under the clause at DFARS 252.227-7013. This
|
* to the copyright license under the clause at DFARS 252.227-7013. This
|
||||||
* notice must appear in all copies of this file and its derivatives.
|
* notice must appear in all copies of this file and its derivatives.
|
||||||
*
|
*
|
||||||
* console.c,v 1.4 1995/12/05 19:23:02 joel Exp
|
* $Id$
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -1,3 +1,6 @@
|
|||||||
|
/*
|
||||||
|
* $Id$
|
||||||
|
*/
|
||||||
|
|
||||||
#include <rtems/score/iregdef.h>
|
#include <rtems/score/iregdef.h>
|
||||||
#include <rtems/score/idtmon.h>
|
#include <rtems/score/idtmon.h>
|
||||||
|
|||||||
@@ -12,7 +12,7 @@
|
|||||||
* to the copyright license under the clause at DFARS 252.227-7013. This
|
* to the copyright license under the clause at DFARS 252.227-7013. This
|
||||||
* notice must appear in all copies of this file and its derivatives.
|
* notice must appear in all copies of this file and its derivatives.
|
||||||
*
|
*
|
||||||
* bsp.h,v 1.4 1995/09/11 19:29:04 joel Exp
|
* $Id$
|
||||||
*/
|
*/
|
||||||
/* @(#)bsp.h 03/15/96 1.1 */
|
/* @(#)bsp.h 03/15/96 1.1 */
|
||||||
|
|
||||||
@@ -62,6 +62,12 @@ extern unsigned32 mips_get_timer( void );
|
|||||||
/*
|
/*
|
||||||
* Simple spin delay in microsecond units for device drivers.
|
* Simple spin delay in microsecond units for device drivers.
|
||||||
* This is very dependent on the clock speed of the target.
|
* This is very dependent on the clock speed of the target.
|
||||||
|
*
|
||||||
|
* NOTE: This macro generates a warning like "integer constant out
|
||||||
|
* of range" which is safe to ignore. In 64 bit mode, unsigned32
|
||||||
|
* types are actually 64 bits long so that comparisons between
|
||||||
|
* unsigned32 types and pointers are valid. The warning is caused
|
||||||
|
* by code in the delay macro that is necessary for 64 bit mode.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#define delay( microseconds ) \
|
#define delay( microseconds ) \
|
||||||
|
|||||||
@@ -22,7 +22,7 @@
|
|||||||
* to the copyright license under the clause at DFARS 252.227-7013. This
|
* to the copyright license under the clause at DFARS 252.227-7013. This
|
||||||
* notice must appear in all copies of this file and its derivatives.
|
* notice must appear in all copies of this file and its derivatives.
|
||||||
*
|
*
|
||||||
* coverhd.h,v 1.2 1995/05/31 16:56:15 joel Exp
|
* $Id$
|
||||||
*/
|
*/
|
||||||
/* @(#)coverhd.h 04/08/96 1.3 */
|
/* @(#)coverhd.h 04/08/96 1.3 */
|
||||||
|
|
||||||
|
|||||||
@@ -1,3 +1,7 @@
|
|||||||
|
/*
|
||||||
|
* $Id$
|
||||||
|
*/
|
||||||
|
|
||||||
#include <rtems/score/iregdef.h>
|
#include <rtems/score/iregdef.h>
|
||||||
#include <rtems/score/idtcpu.h>
|
#include <rtems/score/idtcpu.h>
|
||||||
|
|
||||||
|
|||||||
@@ -15,8 +15,9 @@
|
|||||||
* to the copyright license under the clause at DFARS 252.227-7013. This
|
* to the copyright license under the clause at DFARS 252.227-7013. This
|
||||||
* notice must appear in all copies of this file and its derivatives.
|
* notice must appear in all copies of this file and its derivatives.
|
||||||
*
|
*
|
||||||
* bspclean.c,v 1.2 1995/05/31 16:56:27 joel Exp
|
* $Id$
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef lint
|
#ifndef lint
|
||||||
static char _sccsid[] = "@(#)bspclean.c 03/15/96 1.1\n";
|
static char _sccsid[] = "@(#)bspclean.c 03/15/96 1.1\n";
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
@@ -20,6 +20,8 @@ two paragraphs in the transferred software.
|
|||||||
COPYRIGHT IDT CORPORATION 1996
|
COPYRIGHT IDT CORPORATION 1996
|
||||||
LICENSED MATERIAL - PROGRAM PROPERTY OF IDT
|
LICENSED MATERIAL - PROGRAM PROPERTY OF IDT
|
||||||
|
|
||||||
|
$Id$
|
||||||
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/************************************************************************
|
/************************************************************************
|
||||||
@@ -39,8 +41,6 @@ LICENSED MATERIAL - PROGRAM PROPERTY OF IDT
|
|||||||
#include <rtems/score/iregdef.h>
|
#include <rtems/score/iregdef.h>
|
||||||
#include <rtems/score/idtcpu.h>
|
#include <rtems/score/idtcpu.h>
|
||||||
#include <rtems/score/idtmon.h>
|
#include <rtems/score/idtmon.h>
|
||||||
/* #include <rtems/score/saunder.h> XXX - missing*/
|
|
||||||
|
|
||||||
|
|
||||||
.data
|
.data
|
||||||
mem_size:
|
mem_size:
|
||||||
|
|||||||
@@ -1,4 +1,7 @@
|
|||||||
/* @(#)linkcmds 04/08/96 1.2 */
|
/*
|
||||||
|
* $Id$
|
||||||
|
*/
|
||||||
|
|
||||||
OUTPUT_FORMAT("elf32-bigmips")
|
OUTPUT_FORMAT("elf32-bigmips")
|
||||||
OUTPUT_ARCH(mips)
|
OUTPUT_ARCH(mips)
|
||||||
/* Do we need any of these for elf?
|
/* Do we need any of these for elf?
|
||||||
|
|||||||
@@ -20,7 +20,7 @@
|
|||||||
* to the copyright license under the clause at DFARS 252.227-7013. This
|
* to the copyright license under the clause at DFARS 252.227-7013. This
|
||||||
* notice must appear in all copies of this file and its derivatives.
|
* notice must appear in all copies of this file and its derivatives.
|
||||||
*
|
*
|
||||||
* setvec.c,v 1.2 1995/05/31 16:56:35 joel Exp
|
* $Id$
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef lint
|
#ifndef lint
|
||||||
|
|||||||
Reference in New Issue
Block a user