summaryrefslogtreecommitdiffstats
path: root/memtestEDK/Memtest/Cpuid/TestCpuid.c
blob: 2dffb1d3484b92fd135e44082b8ad55873acb1b5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23

#include <Uefi.h>
#include <Library/UefiLib.h>
#include <Library/UefiApplicationEntryPoint.h>

#include "cpuid.h"


EFI_STATUS
EFIAPI
UefiMain (
  IN EFI_HANDLE        ImageHandle,
  IN EFI_SYSTEM_TABLE  *SystemTable
  )
{
  Print(L"Test for cpuid\n\n");

  get_cpuid();

  Print(L"Test finished.\n");

  return EFI_SUCCESS;
}