source: rtems/c/src/lib/libbsp/m68k/dmv152/spurious/spinit.c @ 3a4ae6c

4.104.114.84.95
Last change on this file since 3a4ae6c was ac7d5ef0, checked in by Joel Sherrill <joel.sherrill@…>, on 05/11/95 at 17:39:37

Initial revision

  • Property mode set to 100644
File size: 1.0 KB
Line 
1/*  Spurious_driver
2 *
3 *  This routine installs spurious interrupt handlers for the DMV152.
4 *
5 *  Input parameters:  NONE
6 *
7 *  Output parameters:  NONE
8 *
9 *  COPYRIGHT (c) 1989, 1990, 1991, 1992, 1993.
10 *  On-Line Applications Research Corporation (OAR).
11 *
12 *  This material may be reproduced by or for the U.S. Government pursuant
13 *  to the copyright license under the clause at DFARS 252.227-7013.  This
14 *  notice must appear in all copies of this file and its derivatives.
15 *
16 *  $Id$
17 */
18
19#include <rtems.h>
20#include <bsp.h>
21#include <stdio.h>
22
23rtems_isr Spurious_Isr(
24  rtems_vector_number vector
25)
26{
27  void *sp = 0;
28
29  asm volatile ( "movea.l   %%sp,%0 " : "=a" (sp) : "0" (sp) );
30
31  fprintf( stderr, "Vector 0x%x sp=0x%p\n", vector, sp );
32}
33
34rtems_device_driver Spurious_Initialize(
35  rtems_device_major_number major,
36  rtems_device_minor_number minor,
37  void *pargp,
38  rtems_id tid,
39  rtems_unsigned32 *rval
40)
41{
42  rtems_vector_number vector;
43
44  for ( vector = 0x40 ; vector <= 0xFF ; vector++ )
45    (void) set_vector( Spurious_Isr, vector, 1 );
46}
Note: See TracBrowser for help on using the repository browser.