1## @file 2# Instance of Base Memory Library without assembly. 3# 4# Base Memory Library implementation - no ASM. 5# 6# Copyright (c) 2007 - 2016, 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 = BaseMemoryLib 21 MODULE_UNI_FILE = BaseMemoryLib.uni 22 FILE_GUID = fd44e603-002a-4b29-9f5f-529e815b6165 23 MODULE_TYPE = BASE 24 VERSION_STRING = 1.0 25 LIBRARY_CLASS = BaseMemoryLib 26 27 28# 29# VALID_ARCHITECTURES = IA32 X64 IPF EBC ARM AARCH64 30# 31 32[Sources] 33 SetMem.c 34 ScanMem64Wrapper.c 35 ScanMem32Wrapper.c 36 ScanMem16Wrapper.c 37 ScanMem8Wrapper.c 38 ZeroMemWrapper.c 39 CompareMemWrapper.c 40 SetMem64Wrapper.c 41 SetMem32Wrapper.c 42 SetMem16Wrapper.c 43 SetMemWrapper.c 44 CopyMemWrapper.c 45 IsZeroBufferWrapper.c 46 MemLibGeneric.c 47 MemLibGuid.c 48 CopyMem.c 49 MemLibInternals.h 50 51[Packages] 52 MdePkg/MdePkg.dec 53 54[LibraryClasses] 55 DebugLib 56 BaseLib 57 58