blob: cc1a094d26fde4d232bede8c525f71abb2c1f203 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// MIT License, Copyright (c) 2020 Marvin Borner
#include <def.h>
#include <fs.h>
#include <load.h>
#include <mem.h>
#include <print.h>
#include <proc.h>
void bin_load(char *path, struct proc *proc)
{
char *data = read_file(path);
u32 stack = (u32)malloc(0x1000) + 0x1000;
proc->regs.ebp = (u32)stack;
proc->regs.esp = (u32)stack;
proc->regs.useresp = (u32)stack;
proc->regs.eip = (u32)data;
}
|