From: Michael Brown Date: Tue, 17 May 2005 13:41:00 +0000 (+0000) Subject: First version X-Git-Tag: v0.9.3~1685 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9c832a6a69aa4cc15bbfe3bfe4677dd66b79fe42;p=thirdparty%2Fipxe.git First version --- diff --git a/src/arch/i386/include/gateA20.h b/src/arch/i386/include/gateA20.h new file mode 100644 index 000000000..297ad6f21 --- /dev/null +++ b/src/arch/i386/include/gateA20.h @@ -0,0 +1,7 @@ +#ifndef GATEA20_H +#define GATEA20_H + +extern void gateA20_set ( void ); +extern void gateA20_unset ( void ); + +#endif /* GATEA20_H */ diff --git a/src/include/osloader.h b/src/include/osloader.h new file mode 100644 index 000000000..124395686 --- /dev/null +++ b/src/include/osloader.h @@ -0,0 +1,6 @@ +#ifndef OSLOADER_H +#define OSLOADER_H + +extern int prep_segment ( physaddr_t start, physaddr_t mid, physaddr_t end ); + +#endif /* OSLOADER_H */