summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYuri Zaporogets <yuriz@users.sourceforge.net>2004-08-08 20:09:32 +0000
committerYuri Zaporogets <yuriz@users.sourceforge.net>2004-08-08 20:09:32 +0000
commit7549d149982c8c89991485d5ef359d22a3416a1f (patch)
treed1616a5375ee86d433a39c1329b5f8aa324a7ab4
parente3057fb65ea55e516b988ab45bc7b917b4f5f910 (diff)
downloadnasm-7549d149982c8c89991485d5ef359d22a3416a1f.tar.gz
Removed old header that was once used by ldrdf.
-rw-r--r--rdoff/multboot.h27
1 files changed, 0 insertions, 27 deletions
diff --git a/rdoff/multboot.h b/rdoff/multboot.h
deleted file mode 100644
index 9669e49e..00000000
--- a/rdoff/multboot.h
+++ /dev/null
@@ -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