// MIT License, Copyright (c) 2020 Marvin Borner #include #include #include #include #include #include #include #include int bin_load(char *path, struct proc *proc) { // TODO: Remove hardcoded filesize struct stat s = { 0 }; vfs_stat(path, &s); char *data = malloc(s.size); vfs_read(path, data, 0, s.size); u32 stack = (u32)malloc(0x2000) + 0x1000; proc->regs.ebp = (u32)stack; proc->regs.useresp = (u32)stack; proc->regs.eip = (u32)data; strcpy(proc->name, path + 1); return data ? 0 : 1; }