aboutsummaryrefslogtreecommitdiff
path: root/toast.h
diff options
context:
space:
mode:
authorDavid <dbphillipsnz@gmail.com>2014-03-27 20:03:33 +1300
committerDavid <dbphillipsnz@gmail.com>2014-03-27 20:32:48 +1300
commit009a998876458f1cbab925c56c95b90d48d72157 (patch)
tree5db5de0a8ce75e9285b4d647cfd685bec5aefd1c /toast.h
parent5d944dfe9f03c9fb43271199d2ba4b8880747614 (diff)
downloadtoast-009a998876458f1cbab925c56c95b90d48d72157.tar.xz
Added a bunch of things. This is the epitome of a bad commit message
Diffstat (limited to 'toast.h')
-rw-r--r--toast.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/toast.h b/toast.h
index 7aa1c3d..a2aeefa 100644
--- a/toast.h
+++ b/toast.h
@@ -25,7 +25,7 @@
#define NULL 0
#define SUCCESS 1
-#include <stdint.h> // uint_8 etc
+#include <stdint.h> // uint8_t etc
#include <stdbool.h> // Get our boolean types defined
#define TRUE true
@@ -35,10 +35,11 @@
#include <lowlevel.h> // Low level assembly, eg outb(port,val)
#include <string/common.h> // Common string functions
#include <panic.h> // Kernel panic and emergency procedures
-#include <multiboot.h>
-
+#include <multiboot.h> // Multiboot structs predefined
// KERNEL.C
void kernel_main();
+void k_dump_memory_blocks(multiboot_info_t *mbd);
+uint32_t *k_tally_available_memory(multiboot_info_t *mbd);
#endif