source: rtems/c/src/lib/libbsp/mips/p4000/startup/bspclean.c @ e2a2ec60

4.104.114.84.95
Last change on this file since e2a2ec60 was e2a2ec60, checked in by Joel Sherrill <joel.sherrill@…>, on 03/21/98 at 15:37:18

Switch to using a shared main() for all of the embedded BSPs
based on the GNU tools. This usually involved correcting the
type of bsp_start(), bsp_cleanup(), adjusting the start code to
call the right start routine (the shared boot_card()), and then
removing code from bsp_start() which was performed in the new
boot_card()/main() path.

  • Property mode set to 100644
File size: 735 bytes
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 *  COPYRIGHT (c) 1989-1998.
11 *  On-Line Applications Research Corporation (OAR).
12 *  Copyright assigned to U.S. Government, 1994.
13 *
14 *  The license and distribution terms for this file may be
15 *  found in the file LICENSE in this distribution or at
16 *  http://www.OARcorp.com/rtems/license.html.
17 *
18 *  $Id$
19 */
20
21/*
22 *  Rather than deleting this, it is commented out to (hopefully) help
23 *  the submitter send updates.
24 *
25 *  static char _sccsid[] = "@(#)bspclean.c 03/15/96     1.1\n";
26 */
27
28
29
30#include <rtems.h>
31#include <bsp.h>
32
33void bsp_cleanup( void )
34{
35  idtsim__exit();
36}
Note: See TracBrowser for help on using the repository browser.