blob: 1e4e6661bfae8a4bc2bd0f9f4b0f0696999460d8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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) {
struct ata_interface *primary_master = new_ata(1, 0x1F0);
marfs_init(primary_master);
font = (struct font *) kmalloc(100000); // High quality shit
marfs_read_whole_file(4, (uint8_t *) font);
}
}
|