source: rtems/c/src/lib/libbsp/mips/rbtx4938/startup/bspstart.c @ a196084

4.104.115
Last change on this file since a196084 was a196084, checked in by Joel Sherrill <joel.sherrill@…>, on 09/16/08 at 19:06:10

2008-09-16 Joel Sherrill <joel.sherrill@…>

  • startup/bspstart.c: Remove unnecessary includes of rtems/libcsupport.h and rtems/libio.h.
  • Property mode set to 100644
File size: 798 bytes
Line 
1/*
2 *  This routine starts the application.  It includes application,
3 *  board, and monitor specific initialization and configuration.
4 *  The generic CPU dependent initialization has been performed
5 *  before this routine is invoked.
6 *
7 *  COPYRIGHT (c) 1989-2000.
8 *  On-Line Applications Research Corporation (OAR).
9 *
10 *  The license and distribution terms for this file may be
11 *  found in the file LICENSE in this distribution or at
12 *  http://www.rtems.com/license/LICENSE.
13 *
14 *  bspstart.c,v 1.4.2.1 2003/09/04 18:44:49 joel Exp
15 */
16
17#include <bsp.h>
18
19/*
20 *  bsp_start
21 *
22 *  This routine does the bulk of the system initialization.
23 */
24void bsp_start( void )
25{
26  extern void mips_install_isr_entries(void);
27
28  mips_install_isr_entries();  /* Install generic MIPS exception handler */
29}
Note: See TracBrowser for help on using the repository browser.