Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
252 B

  1. #include <efi.h>
  2. #include <efilib.h>
  3. EFI_STATUS
  4. EfiMain ( IN EFI_HANDLE ImageHandle,
  5. IN EFI_SYSTEM_TABLE *SystemTable)
  6. {
  7. InitializeLib (ImageHandle, SystemTable);
  8. Print(L"Hello World\n");
  9. return EFI_SUCCESS;
  10. }