exectos/xtldr2/globals.c
Rafal Kupiec ab7fa5ffa4
Some checks failed
Builds / ExectOS (amd64) (push) Failing after 15s
Builds / ExectOS (i686) (push) Failing after 15s
Initial XTLDR configuration
2023-12-03 14:22:14 +01:00

26 lines
603 B
C

/**
* PROJECT: ExectOS
* COPYRIGHT: See COPYING.md in the top level directory
* FILE: xtldr/globals.c
* DESCRIPTION: XT Boot Manager global variables
* DEVELOPERS: Rafal Kupiec <belliash@codingworkshop.eu.org>
*/
#include <xtbm.h>
/* XT Boot Loader configuration data */
XTBM_CONFIGURATION BmpConfiguration = {0};
/* XT Boot Loader hex table */
STATIC PUINT16 BmpHexTable = L"0123456789ABCDEF";
/* Serial port configuration */
CPPORT BmpSerialPort;
/* EFI Image Handle */
EFI_HANDLE EfiImageHandle;
/* EFI System Table */
PEFI_SYSTEM_TABLE EfiSystemTable;