source: rtems/c/src/lib/libbsp/powerpc/helas403/startup/bspclean.c @ 756e5c0

4.104.114.84.95
Last change on this file since 756e5c0 was 756e5c0, checked in by Joel Sherrill <joel.sherrill@…>, on 09/04/03 at 18:52:24

2003-09-04 Joel Sherrill <joel@…>

  • include/bsp.h, include/coverhd.h, startup/bspclean.c, startup/setvec.c: URL for license changed.
  • Property mode set to 100644
File size: 1.3 KB
Line 
1/*  bsp_cleanup()
2 *
3 *  This routine normally is part of start.s and usually returns
4 *  control to a monitor.
5 *
6 *  INPUT:  NONE
7 *
8 *  OUTPUT: NONE
9 *
10 *  Author:     Andrew Bray <andy@i-cubed.co.uk>
11 *
12 *  COPYRIGHT (c) 1995 by i-cubed ltd.
13 *
14 *  To anyone who acknowledges that this file is provided "AS IS"
15 *  without any express or implied warranty:
16 *      permission to use, copy, modify, and distribute this file
17 *      for any purpose is hereby granted without fee, provided that
18 *      the above copyright notice and this notice appears in all
19 *      copies, and that the name of i-cubed limited not be used in
20 *      advertising or publicity pertaining to distribution of the
21 *      software without specific, written prior permission.
22 *      i-cubed limited makes no representations about the suitability
23 *      of this software for any purpose.
24 *
25 *  Derived from c/src/lib/libbsp/no_cpu/no_bsp/startup/bspclean.c:
26 *
27 *  COPYRIGHT (c) 1989-1999.
28 *  On-Line Applications Research Corporation (OAR).
29 *
30 *  The license and distribution terms for this file may be
31 *  found in the file LICENSE in this distribution or at
32 *  http://www.rtems.com/license/LICENSE.
33 *
34 *  $Id$
35 */
36
37#include <rtems.h>
38#include <bsp.h>
39
40void bsp_cleanup( void )
41{
42  rtems_fatal_error_occurred(0);
43}
Note: See TracBrowser for help on using the repository browser.