source: rtems/c/src/lib/libcpu/mips/au1x00/vectorisrs/maxvectors.c @ 74fb4e1f

4.104.114.84.95
Last change on this file since 74fb4e1f was 74fb4e1f, checked in by Jay Monkman <jtm@…>, on 02/25/05 at 05:18:49

2005-02-24 Jay Monkman <jtm@…>

  • Makefile.am, configure.ac: New CPU.
  • shared/interrupts/installisrentries.c, shared/interrupts/isr_entries.S: Added CPU32 support.
  • au1x00/Makefile.am, au1x00/include/au1x00.h, au1x00/vectorisrs/maxvectors.c, au1x00/vectorisrs/vectorisrs.c: New CPU.
  • Property mode set to 100644
File size: 605 bytes
Line 
1/*
2 *  This file contains the maximum number of vectors.  This can not
3 *  be determined without knowing the RTEMS CPU model.
4 *
5 *  COPYRIGHT (c) 1989-2000.
6 *  On-Line Applications Research Corporation (OAR).
7 *
8 *  The license and distribution terms for this file may be
9 *  found in the file LICENSE in this distribution or at
10 *  http://www.OARcorp.com/rtems/license.html.
11 *
12 *  maxvectors.c,v 1.1 2001/05/24 19:54:22 joel Exp
13 */
14
15/*
16 *  Reserve first 32 for exceptions.
17 */
18
19#include <rtems.h>
20#include <libcpu/au1x00.h>
21
22unsigned int mips_interrupt_number_of_vectors = AU1X00_MAXIMUM_VECTORS;
23
Note: See TracBrowser for help on using the repository browser.