summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/m68k/sim68000/startup/bsppredriverhook.c
blob: a30da5cd4f20c40f7aeb4243493e6bd0a42151ae (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*
 *  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.com/license/LICENSE.
 */

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

extern void bsp_spurious_initialize(void);

void bsp_predriver_hook(void)
{
  /* on CPU32: do something about vectors!!! */

  bsp_spurious_initialize();
}