aboutsummaryrefslogtreecommitdiffstats
path: root/Lessons/Lesson_03/UefiLessonsPkg/HelloWorld/HelloWorld.c
blob: 399b0ac079bd8731c440bbd080c3acdf342aa827 (plain)
1
2
3
4
5
6
7
8
9
10
EFI_STATUS
EFIAPI
UefiMain (
  IN EFI_HANDLE        ImageHandle,
  IN EFI_SYSTEM_TABLE  *SystemTable
  )
{
  SystemTable->ConOut->OutputString(SystemTable->ConOut, L"Hello World!\n");
  return EFI_SUCCESS;
}