source: rtems/bsps/mips/rbtx4938/start/bspstart.c @ 9964895

5
Last change on this file since 9964895 was 9964895, checked in by Sebastian Huber <sebastian.huber@…>, on 04/20/18 at 08:35:35

bsps: Move startup files to bsps

Adjust build support files to new directory layout.

This patch is a part of the BSP source reorganization.

Update #3285.

  • Property mode set to 100644
File size: 755 bytes
RevLine 
[0c0181d]1/**
2 *  @file
3 * 
[4ba5ac6]4 *  This routine starts the application.  It includes application,
5 *  board, and monitor specific initialization and configuration.
6 *  The generic CPU dependent initialization has been performed
7 *  before this routine is invoked.
[0c0181d]8 */
9
10/*
11 *  COPYRIGHT (c) 1989-2012.
[4ba5ac6]12 *  On-Line Applications Research Corporation (OAR).
13 *
14 *  The license and distribution terms for this file may be
15 *  found in the file LICENSE in this distribution or at
[c499856]16 *  http://www.rtems.org/license/LICENSE.
[4ba5ac6]17 */
18
19#include <bsp.h>
[4edf8db5]20#include <libcpu/isr_entries.h>
[0c0181d]21#include <bsp/irq-generic.h>
22
23void bsp_start( void );
[4ba5ac6]24
25/*
26 *  bsp_start
27 *
28 *  This routine does the bulk of the system initialization.
29 */
30void bsp_start( void )
31{
[0c0181d]32  bsp_interrupt_initialize();
[4ba5ac6]33}
Note: See TracBrowser for help on using the repository browser.