source: rtems/c/src/lib/libbsp/i386/i386ex/startup/bspstart.c @ 76ba5f2

4.104.115
Last change on this file since 76ba5f2 was 76ba5f2, checked in by Joel Sherrill <joel.sherrill@…>, on 09/18/08 at 18:01:48

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

  • Makefile.am, configure.ac, startup/bspstart.c, startup/linkcmds: Use top level shared bsp_get_work_area() implementation.
  • Property mode set to 100644
File size: 889 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-1999.
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 *  Ported to the i386ex and submitted by:
15 *
16 *    Erik Ivanenko
17 *    University of Toronto
18 *    erik.ivanenko@utoronto.ca
19 *
20 *  $Id$
21 */
22
23#include <bsp.h>
24#include <bsp/irq.h>
25
26extern void rtems_irq_mngt_init();
27
28/*
29 *  bsp_start
30 *
31 *  This routine does the bulk of the system initialization.
32 */
33void bsp_start( void )
34{
35  /*
36   * Init rtems_interrupt_management
37   */
38  rtems_irq_mngt_init();
39}
Note: See TracBrowser for help on using the repository browser.