Browse Source

Add INIT_LOADBUF

tags/v0.9.3
Michael Brown 19 years ago
parent
commit
f649a4d0fd
1 changed files with 5 additions and 3 deletions
  1. 5
    3
      src/include/init.h

+ 5
- 3
src/include/init.h View File

1
 #ifndef INIT_H
1
 #ifndef INIT_H
2
 #define INIT_H
2
 #define INIT_H
3
 
3
 
4
+#include "stddef.h" /* for NULL */
4
 #include "tables.h"
5
 #include "tables.h"
5
 
6
 
6
 /*
7
 /*
42
 #define	INIT_PCIBIOS	05
43
 #define	INIT_PCIBIOS	05
43
 #define	INIT_MEMSIZES	06
44
 #define	INIT_MEMSIZES	06
44
 #define	INIT_RELOCATE	07
45
 #define	INIT_RELOCATE	07
45
-#define	INIT_PCMCIA	08
46
-#define	INIT_HEAP	09
47
-#define	INIT_RPC	10
46
+#define	INIT_LOADBUF	08
47
+#define	INIT_PCMCIA	09
48
+#define	INIT_HEAP	10
49
+#define	INIT_RPC	11
48
 
50
 
49
 /* Macro for creating an initialisation function table entry */
51
 /* Macro for creating an initialisation function table entry */
50
 #define INIT_FN( init_order, init_func, reset_func, exit_func )		      \
52
 #define INIT_FN( init_order, init_func, reset_func, exit_func )		      \

Loading…
Cancel
Save