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

4.115
Last change on this file since d7a1863b was 3660154, checked in by Joel Sherrill <joel.sherrill@…>, on 06/01/14 at 23:18:28

mrm332: Tests now build and fewer warnings

  • Property mode set to 100644
File size: 531 bytes
Line 
1/*
2 *  COPYRIGHT (c) 1989-2014.
3 *  On-Line Applications Research Corporation (OAR).
4 *
5 *  The license and distribution terms for this file may be
6 *  found in the file LICENSE in this distribution or at
7 *  http://www.rtems.org/license/LICENSE.
8 */
9
10#include <bsp.h>
11#include <bsp/bootcard.h>
12
13extern void Spurious_Initialize(void);
14
15/*
16 *  Call Spurious_Initialize in bsp_predriver_hook because
17 *  bsp_predriver_hook is call after the _ISR_Vector_Table allocation
18 */
19void bsp_predriver_hook(void)
20{
21  Spurious_Initialize();
22}
Note: See TracBrowser for help on using the repository browser.