First step of moving bootloader to C++
This commit is contained in:
@@ -13,15 +13,15 @@
|
||||
#endif
|
||||
|
||||
#ifndef KERNEL_MEMTYPE
|
||||
#define KERNEL_MEMTYPE 0x80000000
|
||||
#define KERNEL_MEMTYPE static_cast<EFI_MEMORY_TYPE>(0x80000000)
|
||||
#endif
|
||||
|
||||
#ifndef INITRD_MEMTYPE
|
||||
#define INITRD_MEMTYPE 0x80000001
|
||||
#define INITRD_MEMTYPE static_cast<EFI_MEMORY_TYPE>(0x80000001)
|
||||
#endif
|
||||
|
||||
#ifndef KERNEL_DATA_MEMTYPE
|
||||
#define KERNEL_DATA_MEMTYPE 0x80000002
|
||||
#define KERNEL_DATA_MEMTYPE static_cast<EFI_MEMORY_TYPE>(0x80000002)
|
||||
#endif
|
||||
|
||||
#ifndef KERNEL_FILENAME
|
||||
|
||||
Reference in New Issue
Block a user