source: rtems/c/src/lib/libcpu/mips/tx39/vectorisrs/maxvectors.c @ 73b5bd5d

4.104.114.84.95
Last change on this file since 73b5bd5d was 73b5bd5d, checked in by Ralf Corsepius <ralf.corsepius@…>, on 04/15/04 at 13:33:58

Remove stray white spaces.

  • Property mode set to 100644
File size: 785 bytes
RevLine 
[7c05d28]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
[ae8d185]10 *  http://www.rtems.com/license/LICENSE.
[7c05d28]11 *
12 *  $Id$
13 */
14
15/*
16 *  Reserve first 32 for exceptions.
17 */
18
19/*
20 *  The Toshiba TX3904 attaches 4 of the eight interrupt bits to an
21 *  on-CPU interrupt controller so that these four bits map to 16
22 *  unique interrupts.  So you have: 2 software interrupts, an NMI,
23 *  and 16 others.
24 */
25
26#include <rtems.h>
27#include <libcpu/tx3904.h>
28
29unsigned int mips_interrupt_number_of_vectors = TX3904_MAXIMUM_VECTORS;
Note: See TracBrowser for help on using the repository browser.