aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/graphics/font.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/kernel/graphics/font.c')
-rw-r--r--src/kernel/graphics/font.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/kernel/graphics/font.c b/src/kernel/graphics/font.c
index b2971ec..1e4e666 100644
--- a/src/kernel/graphics/font.c
+++ b/src/kernel/graphics/font.c
@@ -1,17 +1,17 @@
#include <kernel/fs/marfs/marfs.h>
#include <kernel/paging/paging.h>
#include <kernel/io/io.h>
+#include <kernel/graphics/font.h>
#include <mlibc/stdlib/liballoc.h>
+#include <kernel/fs/ata_pio.h>
void font_install() {
uint8_t boot_drive_id = (uint8_t) (*((uint8_t *) 0x9000));
if (boot_drive_id != 0xE0) {
- uint32_t *font = (uint32_t *) kmalloc(0x18326); // High quality shit
- marfs_read_whole_file(4, (uint8_t *) (font + 4096));
+ struct ata_interface *primary_master = new_ata(1, 0x1F0);
+ marfs_init(primary_master);
- for (int i = 0; i < 10; i++) {
- serial_write_hex(font[i]);
- serial_write("\n");
- }
+ font = (struct font *) kmalloc(100000); // High quality shit
+ marfs_read_whole_file(4, (uint8_t *) font);
}
} \ No newline at end of file