4.104.114.84.95
Last change
on this file since 8eacefcc was
8eacefcc,
checked in by Joel Sherrill <joel.sherrill@…>, on 02/29/00 at 16:35:45
|
BSP now compiles and links with CAVSL board information. This includes
linkcmds updated, simio references removed, and switch to libchip for
serial ports from simio.
Added a MEMORY_MAP file to capture information about the various
addresses on this board.
In addition, many of the beta patches are now included.
|
-
Property mode set to
100644
|
File size:
892 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 | |
---|
26 | rtems_isr bsp_spurious_handler( |
---|
27 | rtems_vector_number vector, |
---|
28 | CPU_Interrupt_frame *isf |
---|
29 | ); |
---|
30 | |
---|
31 | void bsp_spurious_initialize() |
---|
32 | { |
---|
33 | rtems_unsigned32 vector; |
---|
34 | |
---|
35 | for ( vector=0 ; vector<64 ; vector++ ) { |
---|
36 | |
---|
37 | /* |
---|
38 | * Skip any vectors that might be generally used for traps. |
---|
39 | */ |
---|
40 | |
---|
41 | set_vector( bsp_spurious_handler, vector, 1 ); |
---|
42 | } |
---|
43 | |
---|
44 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.