File : a-intnam-xi-p55.ads


   1 ------------------------------------------------------------------------------
   2 --                                                                          --
   3 --                  GNAT RUN-TIME LIBRARY (GNARL) COMPONENTS                --
   4 --                                                                          --
   5 --                   A D A . I N T E R R U P T S . N A M E S                --
   6 --                                                                          --
   7 --                                  S p e c                                 --
   8 --                                                                          --
   9 --             Copyright (C) 2012, Free Software Foundation, Inc.           --
  10 --                                                                          --
  11 -- GNAT is free software;  you can  redistribute it  and/or modify it under --
  12 -- terms of the  GNU General Public License as published  by the Free Soft- --
  13 -- ware  Foundation;  either version 3,  or (at your option) any later ver- --
  14 -- sion.  GNAT is distributed in the hope that it will be useful, but WITH- --
  15 -- OUT ANY WARRANTY;  without even the  implied warranty of MERCHANTABILITY --
  16 -- or FITNESS FOR A PARTICULAR PURPOSE.                                     --
  17 --                                                                          --
  18 --                                                                          --
  19 --                                                                          --
  20 --                                                                          --
  21 --                                                                          --
  22 -- You should have received a copy of the GNU General Public License and    --
  23 -- a copy of the GCC Runtime Library Exception along with this program;     --
  24 -- see the files COPYING3 and COPYING.RUNTIME respectively.  If not, see    --
  25 -- <http://www.gnu.org/licenses/>.                                          --
  26 --                                                                          --
  27 -- GNARL was developed by the GNARL team at Florida State University.       --
  28 -- Extensive contributions were provided by Ada Core Technologies, Inc.     --
  29 --                                                                          --
  30 ------------------------------------------------------------------------------
  31 
  32 --  This is the version for p5566 target of this package
  33 
  34 pragma Restrictions (no_elaboration_code);
  35 
  36 with System;
  37 package Ada.Interrupts.Names is
  38 
  39    --  All identifiers in this unit are implementation defined
  40 
  41    pragma Implementation_Defined;
  42 
  43    --  Names come from the Source column of Table 10-9 of MPC5566RM
  44 
  45    --  INTC_SSCIR0 is not available, as interrupt id 0 is reserved
  46    --  INTC_SSCIR0 : constant Interrupt_ID := 0;
  47 
  48    INTC_SSCIR1 : constant Interrupt_ID := 1;
  49    INTC_SSCIR2 : constant Interrupt_ID := 2;
  50    INTC_SSCIR3 : constant Interrupt_ID := 3;
  51    INTC_SSCIR4 : constant Interrupt_ID := 4;
  52    INTC_SSCIR5 : constant Interrupt_ID := 5;
  53    INTC_SSCIR6 : constant Interrupt_ID := 6;
  54    INTC_SSCIR7 : constant Interrupt_ID := 7;
  55 
  56 end Ada.Interrupts.Names;