Browse Source

First version

tags/v0.9.3
Michael Brown 19 years ago
parent
commit
9c832a6a69
2 changed files with 13 additions and 0 deletions
  1. 7
    0
      src/arch/i386/include/gateA20.h
  2. 6
    0
      src/include/osloader.h

+ 7
- 0
src/arch/i386/include/gateA20.h View File

@@ -0,0 +1,7 @@
1
+#ifndef GATEA20_H
2
+#define GATEA20_H
3
+
4
+extern void gateA20_set ( void );
5
+extern void gateA20_unset ( void );
6
+
7
+#endif /* GATEA20_H */

+ 6
- 0
src/include/osloader.h View File

@@ -0,0 +1,6 @@
1
+#ifndef OSLOADER_H
2
+#define OSLOADER_H
3
+
4
+extern int prep_segment ( physaddr_t start, physaddr_t mid, physaddr_t end );
5
+
6
+#endif /* OSLOADER_H */

Loading…
Cancel
Save