Removed old header that was once used by ldrdf.

This commit is contained in:
Yuri Zaporogets 2004-08-08 20:09:32 +00:00
parent e3057fb65e
commit 7549d14998

View file

@ -1,27 +0,0 @@
/******************************************************************************
multboot.h - MultiBoot header definitions.
******************************************************************************/
#ifndef _MULTBOOT_H
#define _MULTBOOT_H
#define MB_MAGIC 0x1BADB002
#define MB_FL_PGALIGN 1 /* Align boot modules on page */
#define MB_FL_MEMINFO 2 /* Must pass memory info to OS */
#define MB_FL_KLUDGE 0x10000 /* a.out kludge present */
struct tMultiBootHeader {
unsigned Magic;
unsigned Flags;
unsigned Checksum;
unsigned HeaderAddr;
unsigned LoadAddr;
unsigned LoadEndAddr;
unsigned BSSendAddr;
unsigned Entry;
};
#define MB_DEFAULTLOADADDR 0x110000 /* Default loading address */
#endif