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 21MonitorVectorTable 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