source: rtems/c/src/exec/score/cpu/mips/rtems.c @ 7e950a4

4.104.114.84.95
Last change on this file since 7e950a4 was 08311cc3, checked in by Joel Sherrill <joel.sherrill@…>, on 11/17/99 at 17:51:34

Updated copyright notice.

  • Property mode set to 100644
File size: 1.4 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-1999.
9 *  On-Line Applications Research Corporation (OAR).
10 *
11 *  The license and distribution terms for this file may be
12 *  found in the file LICENSE in this distribution or at
13 *  http://www.OARcorp.com/rtems/license.html.
14 *
15 *  $Id$
16 */
17
18/*
19 *  Rather than deleting this, it is commented out to (hopefully) help
20 *  the submitter send updates.
21 *
22 * static char _sccsid[] = "@(#)rtems.c 03/15/96     1.1\n";
23 */
24
25
26/*
27 *  This is supposed to be an assembly file.  This means that system.h
28 *  and cpu.h should not be included in a "real" rtems file.
29 */
30
31#include <rtems/system.h>
32#include <rtems/score/cpu.h>
33/* #include "asm.h> */
34
35/*
36 *  RTEMS
37 *
38 *  This routine jumps to the directive indicated in the
39 *  CPU defined register.  This routine is used when RTEMS is
40 *  linked by itself and placed in ROM.  This routine is the
41 *  first address in the ROM space for RTEMS.  The user "calls"
42 *  this address with the directive arguments in the normal place.
43 *  This routine then jumps indirectly to the correct directive
44 *  preserving the arguments.  The directive should not realize
45 *  it has been "wrapped" in this way.  The table "_Entry_points"
46 *  is used to look up the directive.
47 */
48
49void RTEMS()
50{
51}
52
Note: See TracBrowser for help on using the repository browser.