Upload files to "kernel"

This commit is contained in:
2025-05-20 20:44:03 -05:00
parent 256a7a9419
commit 71d2e481bb
3 changed files with 199 additions and 0 deletions

15
kernel/boot.c Normal file
View File

@ -0,0 +1,15 @@
#include <stdint.h>
#include <string.h>
#include <kernel/boot.h>
uint8_t parse_boot_data(const char* data)
{
if (strlen(data) == 0)
{
return 0;
}
return 0;
}