OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [rtos/] [rtems/] [c/] [src/] [lib/] [libbsp/] [powerpc/] [helas403/] [startup/] [setvec.c] - Blame information for rev 30

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 30 unneback
/*  set_vector
2
 *
3
 *  This routine installs an interrupt vector on the target Board/CPU.
4
 *  This routine is allowed to be as board dependent as necessary.
5
 *
6
 *  INPUT:
7
 *    handler - interrupt handler entry point
8
 *    vector  - vector number
9
 *    type    - 0 indicates raw hardware connect
10
 *              1 indicates RTEMS interrupt connect
11
 *
12
 *  RETURNS:
13
 *    address of previous interrupt handler
14
 *
15
 *  Author:     Andrew Bray <andy@i-cubed.co.uk>
16
 *
17
 *  COPYRIGHT (c) 1995 by i-cubed ltd.
18
 *
19
 *  To anyone who acknowledges that this file is provided "AS IS"
20
 *  without any express or implied warranty:
21
 *      permission to use, copy, modify, and distribute this file
22
 *      for any purpose is hereby granted without fee, provided that
23
 *      the above copyright notice and this notice appears in all
24
 *      copies, and that the name of i-cubed limited not be used in
25
 *      advertising or publicity pertaining to distribution of the
26
 *      software without specific, written prior permission.
27
 *      i-cubed limited makes no representations about the suitability
28
 *      of this software for any purpose.
29
 *
30
 *  Derived from c/src/lib/libbsp/no_cpu/no_bsp/startup/setvec.c:
31
 *
32
 *  COPYRIGHT (c) 1989-1999.
33
 *  On-Line Applications Research Corporation (OAR).
34
 *
35
 *  The license and distribution terms for this file may be
36
 *  found in the file LICENSE in this distribution or at
37
 *  http://www.OARcorp.com/rtems/license.html.
38
 *
39
 *  $Id: setvec.c,v 1.2 2001-09-27 12:00:36 chris Exp $
40
 */
41
 
42
#include <rtems.h>
43
#include <bsp.h>
44
 
45
rtems_isr_entry set_vector(                    /* returns old vector */
46
  rtems_isr_entry     handler,                  /* isr routine        */
47
  rtems_vector_number vector,                   /* vector number      */
48
  int                 type                      /* RTEMS or RAW intr  */
49
)
50
{
51
  rtems_isr_entry previous_isr;
52
 
53
  rtems_interrupt_catch( handler, vector, (rtems_isr_entry *) &previous_isr );
54
 
55
  return previous_isr;
56
}
57
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.