source: rtems/c/src/lib/libbsp/sparc64/shared/startup/bspstart.c @ 14b197a

4.115
Last change on this file since 14b197a was 14b197a, checked in by Joel Sherrill <joel.sherrill@…>, on 10/07/14 at 22:40:00

sparc64/shared/startup/bspstart.c: Add include of <bsp/bootcard.h> to fix warning and clean up

  • Property mode set to 100644
File size: 473 bytes
Line 
1/*
2 *  This routine does the bulk of the system initialization.
3 */
4
5/*
6 *  COPYRIGHT (c) 1989-1999.
7 *  On-Line Applications Research Corporation (OAR).
8 *
9 *  The license and distribution terms for this file may be
10 *  found in the file LICENSE in this distribution or at
11 *  http://www.rtems.org/license/LICENSE.
12 */
13
14#include <bsp.h>
15#include <bsp/bootcard.h>
16
17extern void sparc64_install_isr_entries(void);
18
19void bsp_start( void )
20{
21  sparc64_install_isr_entries();
22}
Note: See TracBrowser for help on using the repository browser.