aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/fs/load.c
blob: 0170f265f008c26628b0f628f20ff468b71de48b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#include <fs/load.h>
#include <system.h>
#include <lib/stdio.h>
#include <lib/lib.h>
#include <fs/ext2.h>

void load_binaries()
{
	font = (struct font *)read_file("/bin/font");

	log("Successfully loaded binaries");
}