source: rtems/c/src/lib/libbsp/m68k/mrm332/startup/bsppredriverhook.c @ 6ddc4da

4.115
Last change on this file since 6ddc4da 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: 741 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 <bsp.h>
16
17extern void Spurious_Initialize(void);
18
19/*
20 *  Call Spurious_Initialize in bsp_predriver_hook because
21 *  bsp_predriver_hook is call after the _ISR_Vector_Table allocation
22 */
23void bsp_predriver_hook(void)
24{
25  Spurious_Initialize();
26}
Note: See TracBrowser for help on using the repository browser.