Home | History | Annotate | Download | only in Arm
      1 //
      2 //  Copyright (c) 2011, ARM Limited. All rights reserved.
      3 //
      4 //  This program and the accompanying materials
      5 //  are licensed and made available under the terms and conditions of the BSD License
      6 //  which accompanies this distribution.  The full text of the license may be found at
      7 //  http://opensource.org/licenses/bsd-license.php
      8 //
      9 //  THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
     10 //  WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
     11 //
     12 //
     13 
     14 #include <Library/PcdLib.h>
     15 
     16     EXPORT  MonitorVectorTable
     17 
     18     PRESERVE8
     19     AREA    MonitoVectorTableArea, CODE, READONLY, CODEALIGN, ALIGN=5
     20 
     21 MonitorVectorTable
     22 
     23 _MonitorResetEntry
     24   b   _MonitorResetEntry
     25 _MonitorUndefinedEntry
     26   b   _MonitorUndefinedEntry
     27 _MonitorSmcEntry
     28   b   _MonitorSmcEntry
     29 _MonitorPrefetchEntry
     30   b   _MonitorPrefetchEntry
     31 _MonitorDataAbortEntry
     32   b   _MonitorDataAbortEntry
     33 _MonitorReservedEntry
     34   b   _MonitorReservedEntry
     35 _MonitorIrqEntry
     36   b   _MonitorIrqEntry
     37 _MonitorFiqEntry
     38   b   _MonitorFiqEntry
     39 
     40   END
     41