aboutsummaryrefslogtreecommitdiff
path: root/src/features/load.c
blob: 958acd78ed2cb3f6ef5507b2c8d0fe751dcb0d5c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// MIT License, Copyright (c) 2020 Marvin Borner

#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;

	entry();
}