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

4.115
Last change on this file since c499856 was c499856, checked in by Chris Johns <chrisj@…>, on 03/20/14 at 21:10:47

Change all references of rtems.com to rtems.org.

  • Property mode set to 100644
File size: 739 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.org/license/LICENSE.
13 */
14
15#include <string.h>
16
17#include <bsp.h>
18
19extern void sparc64_install_isr_entries(void);
20
21/*
22 *  bsp_start
23 *
24 *  This routine does the bulk of the system initialization.
25 */
26
27void bsp_start( void )
28{
29/*      bootstrap(); */
30        sparc64_install_isr_entries();
31}
Note: See TracBrowser for help on using the repository browser.