diff options
Diffstat (limited to 'src/features/load.c')
-rw-r--r-- | src/features/load.c | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/src/features/load.c b/src/features/load.c index 958acd7..2cfa546 100644 --- a/src/features/load.c +++ b/src/features/load.c @@ -2,15 +2,16 @@ #include <def.h> #include <fs.h> -#include <load.h> +#include <mem.h> #include <print.h> +#include <proc.h> -void bin_load(char *path) +void bin_load(char *path, struct proc *proc) { char *data = read_file(path); + u32 stack = (u32)malloc(0x1000) + 0x1000; - void (*entry)(); - *(void **)(&entry) = data; - - entry(); + proc->regs.ebp = stack; + proc->regs.esp = stack; + proc->regs.eip = (u32)&data; } |