From b11a2a876e7bd14078d26e12eab62db997a4dc76 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Tue, 14 Apr 2020 23:42:03 +0200 Subject: Switched to grub This really isn't what I wanted because grub is very big and bloaty but my own bootloader was very poorly written and I really want to implement a filesystem like ext2 which wouldn't work with my own bootloader. Furthermore this commit fixes many small issues including the one occurring due to the statically linked user binary (I just removed the linking for now). --- src/resources/font.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/resources/font.c') diff --git a/src/resources/font.c b/src/resources/font.c index de5dda1..4269b35 100644 --- a/src/resources/font.c +++ b/src/resources/font.c @@ -4,6 +4,8 @@ #include +uint32_t magic = 0xf0f0f0f0; + uint16_t cursor[19] = { 0b100000000000, 0b110000000000, 0b111000000000, 0b111100000000, 0b111110000000, 0b111111000000, 0b111111100000, 0b111111110000, 0b111111111000, 0b111111111100, 0b111111111110, 0b111111111111, -- cgit v1.2.3