1 ## @file 2 # Entry Point of Emu Emulator 3 # 4 # Main executable file of Unix Emulator that loads PEI core after initialization finished. 5 # Portions copyright (c) 2011, Apple Inc. All rights reserved.<BR> 6 # Copyright (c) 2012, Intel Corporation. All rights reserved.<BR> 7 # 8 # This program and the accompanying materials 9 # are licensed and made available under the terms and conditions of the BSD License 10 # which accompanies this distribution. The full text of the license may be found at 11 # http://opensource.org/licenses/bsd-license.php 12 # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, 13 # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. 14 # 15 # 16 ## 17 18 [Defines] 19 INF_VERSION = 0x00010005 20 BASE_NAME = EmuSec 21 FILE_GUID = BCAF98C9-22B0-3B4F-9CBD-C8A6B4DBCEE9 22 MODULE_TYPE = SEC 23 VERSION_STRING = 1.0 24 25 26 [Sources] 27 Sec.c 28 29 [Sources.X64] 30 X64/SwitchRam.asm 31 X64/SwitchRam.S 32 33 [Sources.IA32] 34 Ia32/TempRam.c 35 Ia32/SwitchRam.asm 36 Ia32/SwitchRam.S 37 38 [Packages] 39 MdePkg/MdePkg.dec 40 EmulatorPkg/EmulatorPkg.dec 41 42 [LibraryClasses] 43 DebugLib 44 PeCoffGetEntryPointLib 45 PeiServicesLib 46 PpiListLib 47 BaseMemoryLib 48 49 [Ppis] 50 gEfiTemporaryRamSupportPpiGuid 51 52 [Pcd] 53 gEmulatorPkgTokenSpaceGuid.PcdPeiServicesTablePage 54