]> git.proxmox.com Git - mirror_edk2.git/blob - OvmfPkg/ResetVector/ResetVectorCode.asm
Add missing EFIAPI instances on several functions.
[mirror_edk2.git] / OvmfPkg / ResetVector / ResetVectorCode.asm
1 ;------------------------------------------------------------------------------
2 ;
3 ; Copyright (c) 2008, Intel Corporation
4 ; All rights reserved. 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 ; Module Name:
13 ;
14 ; ResetVectorCode.asm
15 ;
16 ; Abstract:
17 ;
18 ; Create code for VTF raw section.
19 ;
20 ;------------------------------------------------------------------------------
21
22 %ifdef ARCH_IA32
23 %ifdef ARCH_X64
24 %error "Only one of ARCH_IA32 or ARCH_X64 can be defined."
25 %endif
26 %elifdef ARCH_X64
27 %else
28 %error "Either ARCH_IA32 or ARCH_X64 must be defined."
29 %endif
30
31 %include "CommonMacros.inc"
32 %include "SerialDebug.asm"
33 %include "Ia32/SearchForBfvBase.asm"
34 %include "Ia32/SearchForSecAndPeiEntries.asm"
35 %include "JumpToSec.asm"
36 %include "Ia16/16RealTo32Flat.asm"
37
38 %ifdef ARCH_X64
39 %include "Ia32/32FlatTo64Flat.asm"
40 %endif
41
42 %include "Ia16/ResetVectorVtf0.asm"
43