summaryrefslogtreecommitdiffstats
path: root/efi_memtest/MemtestEfi.c
blob: b847aaafde1074d55add3d70cc897368d789e560 (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 "Guid/FileSystemInfo.h"

#include "memtest86+/efi/main.h"


EFI_STATUS
EFIAPI
UefiMain (
  IN EFI_HANDLE        ImageHandle,
  IN EFI_SYSTEM_TABLE  *SystemTable
  )
{
  
  Print(L"MemtestEfi started\n");
  test_start();

  return EFI_SUCCESS;
}