From 5d73ba1059771f3226c1f45d41a9e3f52d68ee3d Mon Sep 17 00:00:00 2001 From: Jon Santmyer Date: Mon, 15 Sep 2025 15:51:13 -0400 Subject: begin init staging refactor --- apps/init/stage1/stage1.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 apps/init/stage1/stage1.h (limited to 'apps/init/stage1/stage1.h') diff --git a/apps/init/stage1/stage1.h b/apps/init/stage1/stage1.h new file mode 100644 index 0000000..d6c3e90 --- /dev/null +++ b/apps/init/stage1/stage1.h @@ -0,0 +1,12 @@ +#ifndef INIT_STAGE1_H +#define INIT_STAGE1_H 1 + +#include + +extern uint8_t *_syscall_payload; +extern uint8_t _syscall_message; + +void syscall_invoke_noret(uint64_t calltype); +intmax_t syscall_invoke_ret(uint64_t calltype); + +#endif -- cgit v1.2.1