elf: start writing elf loader

This commit is contained in:
RaphProductions 2025-05-08 15:17:13 +02:00
parent 175805604e
commit a6f371b4ad
12 changed files with 4706 additions and 72 deletions

View file

@ -90,6 +90,8 @@ sched_process *sched_create(char *name, uint64_t entry_point, pagemap_t* pm, uin
log("sched - Standby mode has been"
"disabled.\n");
}
log("sched - created process '%s' (pid: %d, rip: %p)\n", proc->name, proc->pid, proc->regs.rip);
return proc;
}