source: rtems/c/src/lib/libcpu/arm/s3c2400/irq/bsp_irq_init.c @ 754ca4b1

4.104.114.84.95
Last change on this file since 754ca4b1 was 479ac2d8, checked in by Jay Monkman <jtm@…>, on 03/11/05 at 07:26:45

2005-03-11 Philippe Simons <loki_666@…>

  • Makefile.am, configure.ac: Added gp32 BSP.
  • s3c2400/.cvsignore, s3c2400/Makefile.am, s3c2400/clock/clockdrv.c, s3c2400/include/s3c2400.h, s3c2400/irq/bsp_irq_asm.S, s3c2400/irq/bsp_irq_init.c, s3c2400/irq/irq.c, s3c2400/irq/irq.h, s3c2400/timer/timer.c: New files.
  • Property mode set to 100644
File size: 621 bytes
Line 
1/* irq_init.c
2 *
3 *  This file contains the implementation of rtems initialization
4 *  related to interrupt handling.
5 *
6 *  CopyRight (C) 2000 Canon Research Centre France SA.
7 *  Emmanuel Raguet, mailto:raguet@crf.canon.fr
8 *
9 *  The license and distribution terms for this file may be
10 *  found in the file LICENSE in this distribution or at
11 *  http://www.rtems.com/license/LICENSE.
12 *
13 *  $Id$
14 */
15#include <irq.h>
16#include <bsp.h>
17#include <s3c2400.h>
18
19extern void default_int_handler();
20
21void BSP_rtems_irq_mngt_init()
22{
23    /*
24     * Here is the code to initialize the INT for
25     * the specified BSP
26     */
27}
Note: See TracBrowser for help on using the repository browser.