source: rtems/c/src/exec/score/cpu/mips/rtems.c @ 32ef3dc

4.104.114.84.95
Last change on this file since 32ef3dc was 32ef3dc, checked in by Joel Sherrill <joel.sherrill@…>, on 04/07/97 at 21:19:59

commented out sccs_id to eliminate warning.

  • Property mode set to 100644
File size: 1.5 KB
Line 
1/*  rtems.c  ===> rtems.S or rtems.s
2 *
3 *  This file contains the single entry point code for
4 *  the XXX implementation of RTEMS.
5 *
6 *  NOTE:  This is supposed to be a .S or .s file NOT a C file.
7 *
8 *  COPYRIGHT (c) 1989, 1990, 1991, 1992, 1993, 1994.
9 *  On-Line Applications Research Corporation (OAR).
10 *  All rights assigned to U.S. Government, 1994.
11 *
12 *  This material may be reproduced by or for the U.S. Government pursuant
13 *  to the copyright license under the clause at DFARS 252.227-7013.  This
14 *  notice must appear in all copies of this file and its derivatives.
15 *
16 *  $Id$
17 */
18
19/*
20 *  Rather than deleting this, it is commented out to (hopefully) help
21 *  the submitter send updates.
22 *
23 * static char _sccsid[] = "@(#)rtems.c 03/15/96     1.1\n";
24 */
25
26
27/*
28 *  This is supposed to be an assembly file.  This means that system.h
29 *  and cpu.h should not be included in a "real" rtems file.
30 */
31
32#include <rtems/system.h>
33#include <rtems/score/cpu.h>
34/* #include "asm.h> */
35
36/*
37 *  RTEMS
38 *
39 *  This routine jumps to the directive indicated in the
40 *  CPU defined register.  This routine is used when RTEMS is
41 *  linked by itself and placed in ROM.  This routine is the
42 *  first address in the ROM space for RTEMS.  The user "calls"
43 *  this address with the directive arguments in the normal place.
44 *  This routine then jumps indirectly to the correct directive
45 *  preserving the arguments.  The directive should not realize
46 *  it has been "wrapped" in this way.  The table "_Entry_points"
47 *  is used to look up the directive.
48 */
49
50void RTEMS()
51{
52}
53
Note: See TracBrowser for help on using the repository browser.