acadia/zion/loader/elf_loader.h
Drew Galbraith aefb4f082b Add a kernel ELF module and load it in a new process.
Don't yet jump to userspace.
2023-05-29 00:32:54 -07:00

5 lines
88 B
C

#pragma once
#include <stdint.h>
void LoadElfProgram(uint64_t base, uint64_t length);