]> git.proxmox.com Git - mirror_edk2.git/blame - UefiCpuPkg/ResetVector/Vtf0/ResetVectorCode.asm
Update the copyright notice format
[mirror_edk2.git] / UefiCpuPkg / ResetVector / Vtf0 / ResetVectorCode.asm
CommitLineData
bc252e8e
EB
1;------------------------------------------------------------------------------\r
2; @file\r
3; This file includes all other code files to assemble the reset vector code\r
4;\r
01a1c0fc
HT
5; Copyright (c) 2008 - 2009, Intel Corporation. All rights reserved.<BR>\r
6; This program and the accompanying materials\r
bc252e8e
EB
7; are licensed and made available under the terms and conditions of the BSD License\r
8; which accompanies this distribution. The full text of the license may be found at\r
9; http://opensource.org/licenses/bsd-license.php\r
10;\r
11; THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
12; WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
13;\r
14;------------------------------------------------------------------------------\r
15\r
16%ifdef ARCH_IA32\r
17 %ifdef ARCH_X64\r
18 %error "Only one of ARCH_IA32 or ARCH_X64 can be defined."\r
19 %endif\r
20%elifdef ARCH_X64\r
21%else\r
22 %error "Either ARCH_IA32 or ARCH_X64 must be defined."\r
23%endif\r
24\r
25%include "CommonMacros.inc"\r
26\r
27%include "PostCodes.inc"\r
28\r
29%ifdef DEBUG_NONE\r
30 %include "DebugDisabled.asm"\r
31%elifdef DEBUG_PORT80\r
32 %include "Port80Debug.asm"\r
33%elifdef DEBUG_SERIAL\r
34 %include "SerialDebug.asm"\r
35%else\r
36 %error "No debug type was specified."\r
37%endif\r
38\r
39%include "Ia32/SearchForBfvBase.asm"\r
40%include "Ia32/SearchForSecEntry.asm"\r
41\r
42%ifdef ARCH_X64\r
43%include "Ia32/32FlatTo64Flat.asm"\r
44%endif\r
45\r
46%include "Ia16/16RealTo32Flat.asm"\r
47%include "Ia16/Init16.asm"\r
48\r
49%include "Main.asm"\r
50\r
51%include "Ia16/ResetVectorVtf0.asm"\r
52\r