1 ## @file 2 # UEFI Application to display CPUID leaf information. 3 # 4 # This UEFI application displays the registers values returned by CPUID for 5 # all the CPUID leafs and sub-leafs that a CPU supports. It also displays 6 # the values of all the bit fields in the registers returned by each CPUID 7 # leaf and sub-leaf. 8 # 9 # Copyright (c) 2016, Intel Corporation. All rights reserved.<BR> 10 # 11 # This program and the accompanying materials 12 # are licensed and made available under the terms and conditions of the BSD License 13 # which accompanies this distribution. The full text of the license may be found at 14 # http://opensource.org/licenses/bsd-license.php 15 # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, 16 # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. 17 # 18 ## 19 20 [Defines] 21 INF_VERSION = 0x00010005 22 BASE_NAME = Cpuid 23 MODULE_UNI_FILE = Cpuid.uni 24 FILE_GUID = 4AE7E1E8-9DFE-4e3e-85B4-A5F6ABD470FB 25 MODULE_TYPE = UEFI_APPLICATION 26 VERSION_STRING = 0.5 27 ENTRY_POINT = UefiMain 28 29 # 30 # The following information is for reference only and not required by the build tools. 31 # 32 # VALID_ARCHITECTURES = IA32 X64 33 # 34 35 [Sources] 36 Cpuid.c 37 38 [Packages] 39 MdePkg/MdePkg.dec 40 UefiCpuPkg/UefiCpuPkg.dec 41 42 [LibraryClasses] 43 UefiApplicationEntryPoint 44 BaseLib 45 UefiLib 46 47 [UserExtensions.TianoCore."ExtraFiles"] 48 CpuidExtra.uni 49