From f95f22640ee037e238559769145660e2814d0017 Mon Sep 17 00:00:00 2001 From: david-on-debian Date: Tue, 20 May 2025 20:41:14 -0500 Subject: [PATCH] Upload files to "include/kernel" --- include/kernel/boot.h | 7 +++++++ include/kernel/syscalls.h | 8 ++++++++ 2 files changed, 15 insertions(+) create mode 100644 include/kernel/boot.h create mode 100644 include/kernel/syscalls.h diff --git a/include/kernel/boot.h b/include/kernel/boot.h new file mode 100644 index 0000000..f6982c3 --- /dev/null +++ b/include/kernel/boot.h @@ -0,0 +1,7 @@ +#ifndef _KERNEL_BOOT_H +#define _KERNEL_BOOT_H + + +uint8_t parse_boot_data(const char* data); + +#endif diff --git a/include/kernel/syscalls.h b/include/kernel/syscalls.h new file mode 100644 index 0000000..c29a68e --- /dev/null +++ b/include/kernel/syscalls.h @@ -0,0 +1,8 @@ +#ifndef _SYSCALLS_H +#define _SYSCALLS_H + +#include + +int16_t syscall_write(int32_t fd, const void* buffer, int32_t length); + +#endif