aboutsummaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c9
1 files changed, 7 insertions, 2 deletions
diff --git a/src/main.c b/src/main.c
index cf4fc75..ce5b39a 100644
--- a/src/main.c
+++ b/src/main.c
@@ -5,13 +5,18 @@
#include <serial.h>
#include <vesa.h>
+u32 HEAP = 0x00200000;
+u32 HEAP_START;
+
void main(struct mem_info *mem_info, struct vid_info *vid_info)
{
+ HEAP_START = HEAP; // For malloc function
+
mem_info++; // TODO: Use the mmap (or remove)!
vbe = vid_info->info;
- u32 terminal_background[3] = { 0x1d, 0x1f, 0x24 };
- vesa_clear(terminal_background);
+ u8 terminal_background[3] = { 0x1d, 0x1f, 0x24 };
+ vesa_fill(terminal_background);
serial_install();
serial_print("hello\n");