aboutsummaryrefslogtreecommitdiff
path: root/src/features/load.c
blob: 47beb9ba596b9b4eef4f2c56af95ceff77c1b509 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <def.h>
#include <fs.h>
#include <load.h>
#include <print.h>

void bin_load(char *path)
{
	char *data = read_file(path);

	void (*entry)();
	*(void **)(&entry) = data + MAIN_OFFSET;

	entry();
}