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

4.104.115
Last change on this file since a444be6 was a444be6, checked in by Joel Sherrill <joel.sherrill@…>, on 09/14/08 at 21:52:48

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

  • Makefile.am, configure.ac, startup/bspstart.c: Create bsp_get_work_area() into its own file and use BSP Framework to perform more initialization.
  • startup/bspgetworkarea.c: New file.
  • Property mode set to 100644
File size: 845 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 <string.h>
18
19#include <bsp.h>
20#include <rtems/libio.h>
21
22/*
23 *  bsp_start
24 *
25 *  This routine does the bulk of the system initialization.
26 */
27
28void bsp_start( void )
29{
30  extern void mips_install_isr_entries(void);
31
32  mips_install_isr_entries();  /* Install generic MIPS exception handler */
33}
Note: See TracBrowser for help on using the repository browser.