source: rtems/c/src/exec/score/cpu/a29k/rtems.c @ a4d97d94

4.104.114.84.95
Last change on this file since a4d97d94 was a4d97d94, checked in by Joel Sherrill <joel.sherrill@…>, on 09/18/96 at 20:45:27

new files submitted by Craig Lebakken (lebakken@…) and Derrick Ostertag
(ostertag@…).

  • 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, 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#ifndef lint
19static char _sccsid[] = "@(#)rtems.c 04/08/96     1.1\n";
20#endif
21
22/*
23 *  This is supposed to be an assembly file.  This means that system.h
24 *  and cpu.h should not be included in a "real" rtems file.
25 */
26
27#include <rtems/system.h>
28#include <rtems/score/cpu.h>
29/* #include "asm.h> */
30
31/*
32 *  RTEMS
33 *
34 *  This routine jumps to the directive indicated in the
35 *  CPU defined register.  This routine is used when RTEMS is
36 *  linked by itself and placed in ROM.  This routine is the
37 *  first address in the ROM space for RTEMS.  The user "calls"
38 *  this address with the directive arguments in the normal place.
39 *  This routine then jumps indirectly to the correct directive
40 *  preserving the arguments.  The directive should not realize
41 *  it has been "wrapped" in this way.  The table "_Entry_points"
42 *  is used to look up the directive.
43 */
44
45void RTEMS()
46{
47}
48
Note: See TracBrowser for help on using the repository browser.