summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Brown2007-01-04 20:36:31 +0100
committerMichael Brown2007-01-04 20:36:31 +0100
commit70acce06e4a5dadef3c76d15ebe5479c295298e1 (patch)
tree2d223dc303e550088890dadcfafce18da5470949
parentRipped out everything except the ability to send EOI to the PIC. (diff)
downloadipxe-70acce06e4a5dadef3c76d15ebe5479c295298e1.tar.gz
ipxe-70acce06e4a5dadef3c76d15ebe5479c295298e1.tar.xz
ipxe-70acce06e4a5dadef3c76d15ebe5479c295298e1.zip
This file is no longer used
-rw-r--r--src/arch/i386/include/old_realmode.h22
1 files changed, 0 insertions, 22 deletions
diff --git a/src/arch/i386/include/old_realmode.h b/src/arch/i386/include/old_realmode.h
deleted file mode 100644
index 3dde8c810..000000000
--- a/src/arch/i386/include/old_realmode.h
+++ /dev/null
@@ -1,22 +0,0 @@
-#ifndef _OLD_REALMODE_H
-#define _OLD_REALMODE_H
-
-#include <realmode.h>
-
-#warning "Anything including this header is obsolete and must be rewritten"
-
-/* Just for now */
-#define SEGMENT(x) ( virt_to_phys ( x ) >> 4 )
-#define OFFSET(x) ( virt_to_phys ( x ) & 0xf )
-#define SEGOFF(x) { OFFSET(x), SEGMENT(x) }
-
-/* To make basemem.c compile */
-extern int lock_real_mode_stack;
-extern char *real_mode_stack;
-extern char real_mode_stack_size[];
-
-#define RM_FRAGMENT(name,asm) \
- void name ( void ) {} \
- extern char name ## _size[];
-
-#endif /* _OLD_REALMODE_H */