source: rtems/c/src/lib/libbsp/c4x/c4xsim/startup/spurious.c @ ed612fa

4.104.114.84.95
Last change on this file since ed612fa was ed612fa, checked in by Joel Sherrill <joel.sherrill@…>, on 01/04/02 at 17:40:43

2002-01-03 Ralf Corsepius <corsepiu@…>

  • startup/bspstart.c: Include rtems/bspIo.h instead of bspIo.h.
  • startup/spurious.c: Include rtems/bspIo.h instead of bspIo.h.
  • Property mode set to 100644
File size: 694 bytes
Line 
1/*
2 *  CXX Simulator Spurious Trap Handler Assistant
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 <rtems/bspIo.h>
19#include <simio.h>
20
21/*
22 *  bsp_spurious_handler_assistant
23 *
24 *  We can't recover so just return to gdb.
25 */
26
27void bsp_spurious_handler_assistant(
28  rtems_vector_number  vector,
29  CPU_Interrupt_frame *isf
30)
31{
32  sim_exit();
33}
Note: See TracBrowser for help on using the repository browser.