source: rtems/c/src/lib/libbsp/nios2/nios2_iss/shmsupp/mpisr.c @ 783669fc

4.104.114.84.95
Last change on this file since 783669fc was 783669fc, checked in by Joel Sherrill <joel.sherrill@…>, on 08/09/06 at 20:57:11

2006-08-09 Kolja Waschk <waschk@…>

  • ChangeLog?, Makefile.am, README, acinclude.m4, configure.ac, nios2_iss/ChangeLog, nios2_iss/Makefile.am, nios2_iss/bsp_specs, nios2_iss/configure.ac, nios2_iss/nios2_iss.ptf, nios2_iss/nios2_iss.sh, nios2_iss/times, nios2_iss/console/console.c, nios2_iss/include/bsp.h, nios2_iss/include/bspopts.h.in, nios2_iss/include/coverhd.h, nios2_iss/include/tm27.h, nios2_iss/shmsupp/addrconv.c, nios2_iss/shmsupp/getcfg.c, nios2_iss/shmsupp/lock.c, nios2_iss/shmsupp/mpisr.c, nios2_iss/start/crtnn.s, nios2_iss/start/start.S, nios2_iss/startup/bspclean.c, nios2_iss/startup/bspstart.c, nios2_iss/startup/linkcmds, nios2_iss/startup/main.c, nios2_iss/startup/setvec.c, nios2_iss/timer/timer.c: New files.
  • Property mode set to 100644
File size: 1.1 KB
Line 
1/*  Shm_isr_nobsp()
2 *
3 *  COPYRIGHT (c) 1989-1999.
4 *  On-Line Applications Research Corporation (OAR).
5 *
6 *  The license and distribution terms for this file may be
7 *  found in the file LICENSE in this distribution or at
8 *  http://www.rtems.com/license/LICENSE.
9 *
10 *  $Id$
11 */
12
13#include <rtems.h>
14#include <bsp.h>
15#include <shm_driver.h>
16
17rtems_isr Shm_isr_nobsp( void )
18{
19  /*
20   *  If this routine has to do anything other than the mpisr.c
21   *  found in the generic driver, then copy the contents of the generic
22   *  mpisr.c and augment it to satisfy this particular board.  Typically,
23   *  you need to have a board specific mpisr.c when the interrupt
24   *  must be cleared.
25   *
26   *  If the generic mpisr.c satisifies your requirements, then
27   *  remove this routine from your target's shmsupp/mpisb.c file.
28   *  Then simply install the generic Shm_isr in the Shm_setvec
29   *  routine below.
30   */
31}
32
33/*  Shm_setvec
34 *
35 *  This driver routine sets the SHM interrupt vector to point to the
36 *  driver's SHM interrupt service routine.
37 *
38 *  Input parameters:  NONE
39 *
40 *  Output parameters: NONE
41 */
42
43void Shm_setvec( void )
44{
45  /* XXX: FIX ME!!! */
46}
Note: See TracBrowser for help on using the repository browser.