X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;f=Kernel%2Finclude%2Fmboot.h;h=ad9365599f06cc9ca7b694824d3e43efcf3fec6f;hb=HEAD;hp=6d5e6a4bc5944fbb47a4d8f6a204742a6d46fc6c;hpb=88ad2daf974ce4c4c770307546a9b4968c6183c2;p=tpg%2Facess2.git diff --git a/Kernel/include/mboot.h b/Kernel/include/mboot.h deleted file mode 100644 index 6d5e6a4b..00000000 --- a/Kernel/include/mboot.h +++ /dev/null @@ -1,38 +0,0 @@ -/* - * AcessOS Microkernel Version - * mboot.h - */ -#ifndef _MBOOT_H -#define _MBOOT_H - -#define MULTIBOOT_MAGIC 0x2BADB002 - -// === TYPES === -typedef struct { - Uint32 Flags; - Uint32 LowMem; - Uint32 HighMem; - Uint32 BootDevice; - Uint32 CommandLine; - Uint32 ModuleCount; - Uint32 Modules; - Uint32 SymbolInfo[4]; // #32 UNUSED - Uint32 MMapLength; - Uint32 MMapAddr; // #40 -} tMBoot_Info; - -typedef struct { - Uint32 Start; - Uint32 End; - char *String; - Uint32 Resvd; -} tMBoot_Module; - -typedef struct { - Uint32 Size; // (May be at offset -4) - Uint64 Base; - Uint64 Length; - Uint32 Type; //1:RAM,Else Reserved -} __attribute__ ((packed)) tMBoot_MMapEnt; - -#endif