2011-05-14 18:00:22 +02:00
|
|
|
## @file
|
|
|
|
# Entry Point of Emu Emulator
|
|
|
|
#
|
|
|
|
# Main executable file of Unix Emulator that loads PEI core after initialization finished.
|
|
|
|
# Portions copyright (c) 2011, Apple Inc. All rights reserved.<BR>
|
2012-08-15 02:03:25 +02:00
|
|
|
# Copyright (c) 2012, Intel Corporation. All rights reserved.<BR>
|
2011-05-14 18:00:22 +02:00
|
|
|
#
|
|
|
|
# This program and the accompanying materials
|
|
|
|
# are licensed and made available under the terms and conditions of the BSD License
|
|
|
|
# which accompanies this distribution. The full text of the license may be found at
|
|
|
|
# http://opensource.org/licenses/bsd-license.php
|
|
|
|
# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
|
|
|
#
|
|
|
|
#
|
|
|
|
##
|
|
|
|
|
|
|
|
[Defines]
|
|
|
|
INF_VERSION = 0x00010005
|
|
|
|
BASE_NAME = EmuSec
|
|
|
|
FILE_GUID = BCAF98C9-22B0-3B4F-9CBD-C8A6B4DBCEE9
|
|
|
|
MODULE_TYPE = SEC
|
|
|
|
VERSION_STRING = 1.0
|
|
|
|
|
|
|
|
|
|
|
|
[Sources]
|
|
|
|
Sec.c
|
|
|
|
|
|
|
|
[Sources.X64]
|
2012-08-15 02:03:25 +02:00
|
|
|
X64/SwitchRam.asm
|
2011-05-14 18:00:22 +02:00
|
|
|
X64/SwitchRam.S
|
|
|
|
|
2011-06-18 19:53:31 +02:00
|
|
|
[Sources.IA32]
|
2011-06-19 01:36:36 +02:00
|
|
|
Ia32/TempRam.c
|
2012-08-15 02:03:25 +02:00
|
|
|
Ia32/SwitchRam.asm
|
2011-06-18 19:53:31 +02:00
|
|
|
Ia32/SwitchRam.S
|
|
|
|
|
2011-05-14 18:00:22 +02:00
|
|
|
[Packages]
|
|
|
|
MdePkg/MdePkg.dec
|
2011-06-28 18:47:23 +02:00
|
|
|
EmulatorPkg/EmulatorPkg.dec
|
2011-05-14 18:00:22 +02:00
|
|
|
|
|
|
|
[LibraryClasses]
|
|
|
|
DebugLib
|
|
|
|
PeCoffGetEntryPointLib
|
|
|
|
PeiServicesLib
|
|
|
|
PpiListLib
|
|
|
|
BaseMemoryLib
|
|
|
|
|
|
|
|
[Ppis]
|
|
|
|
gEfiTemporaryRamSupportPpiGuid
|
2011-06-28 18:50:26 +02:00
|
|
|
|
2011-06-08 23:52:21 +02:00
|
|
|
[Pcd]
|
2011-06-28 18:47:23 +02:00
|
|
|
gEmulatorPkgTokenSpaceGuid.PcdPeiServicesTablePage
|