summaryrefslogtreecommitdiff
path: root/src/kernel/main.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/kernel/main.h')
-rw-r--r--src/kernel/main.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/kernel/main.h b/src/kernel/main.h
index e4ead31..edceb76 100644
--- a/src/kernel/main.h
+++ b/src/kernel/main.h
@@ -3,9 +3,13 @@
struct kmain_info {
struct {
- void *at; // page aligned
+ void *at; /* page aligned */
size_t size;
- } init; // a boot module loaded by GRUB, containing the initrd driver
+ } init; /* a boot module loaded by GRUB, containing the initrd driver */
+ struct {
+ void *at;
+ size_t size;
+ } fb; /* the framebuffer */
void *memtop;
};