1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
/* * Copyright (c) 2021, Konstantin Aladyshev <aladyshev22@gmail.com> * * SPDX-License-Identifier: MIT */ 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; }