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