source: rtems/c/src/lib/libbsp/m68k/dmv152/spurious/spinit.c @ 0f458a3

4.104.114.84.95
Last change on this file since 0f458a3 was 0f458a3, checked in by Ralf Corsepius <ralf.corsepius@…>, on 03/31/04 at 04:38:23

2004-03-31 Ralf Corsepius <ralf_corsepius@…>

  • clock/ckinit.c, console/console.c, include/bsp.h, spurious/spinit.c, startup/bspstart.c, startup/vmeintr.c, timer/timer.c: Convert to using c99 fixed size types.
  • Property mode set to 100644
File size: 1014 bytes
RevLine 
[ac7d5ef0]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 *
[98e4ebf5]12 *  The license and distribution terms for this file may be
13 *  found in the file LICENSE in this distribution or at
[9980062]14 *  http://www.rtems.com/license/LICENSE.
[ac7d5ef0]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,
[0f458a3]39  uint32_t         *rval
[ac7d5ef0]40)
41{
42  rtems_vector_number vector;
43
44  for ( vector = 0x40 ; vector <= 0xFF ; vector++ )
45    (void) set_vector( Spurious_Isr, vector, 1 );
[759a9d9]46
47  return 0;
[ac7d5ef0]48}
Note: See TracBrowser for help on using the repository browser.