source: rtems/c/src/lib/libbsp/m68k/shared/bspspuriousinit.c @ 23e3ce64

4.104.114.84.95
Last change on this file since 23e3ce64 was b812f84, checked in by Joel Sherrill <joel.sherrill@…>, on 08/01/00 at 20:01:14

Added sim68000 BSP for the BSVC simulator. This BSP includes the
alias simcpu32 that supports the CPU32 simulator in BSVC. At this
point, it is still under development.

  • Property mode set to 100644
File size: 917 bytes
Line 
1/*
2 *  CXX Spurious Trap Handler Install Routine
3 *
4 *  This is just enough of a trap handler to let us know what
5 *  the likely source of the trap was.
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.OARcorp.com/rtems/license.html.
13 *
14 *  $Id$
15 */
16
17#include <bsp.h>
18#include <bspIo.h>
19
20/*
21 *  bsp_spurious_initialize
22 *
23 *  Install the spurious handler for most vectors.
24 */
25
26rtems_isr bsp_spurious_handler(
27   rtems_vector_number  vector/*,
28   CPU_Interrupt_frame *isf */
29);
30
31void bsp_spurious_initialize()
32{
33  rtems_unsigned32 vector;
34
35  for ( vector=0 ; vector<255 ; vector++ ) {
36
37    /*
38     *  Skip any vectors that might be generally used for traps.
39     *
40     *  XXX
41     */
42
43    set_vector( bsp_spurious_handler, vector, 1 );
44  }
45
46}
Note: See TracBrowser for help on using the repository browser.