summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/sparc64/shared/startup/bspstart.c
blob: f6c190b67a5b9a607d3cd5da2f3432f81417ff93 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/*
 *  This routine does the bulk of the system initialization.
 */

/*
 *  COPYRIGHT (c) 1989-1999.
 *  On-Line Applications Research Corporation (OAR).
 *
 *  The license and distribution terms for this file may be
 *  found in the file LICENSE in this distribution or at
 *  http://www.rtems.org/license/LICENSE.
 */

#include <bsp.h>
#include <bsp/bootcard.h>

extern void sparc64_install_isr_entries(void);

void bsp_start( void )
{
  sparc64_install_isr_entries();
}