Simple VFS layer

This commit is contained in:
2025-08-15 01:41:11 +02:00
parent b470fb03da
commit d91330ba73
16 changed files with 403 additions and 2 deletions

View File

@ -11,6 +11,9 @@ void hal_intr_disable(void);
void hal_intr_enable(void);
void *hal_memset(void *p, int c, size_t n);
void *hal_memcpy(void *dst, const void *src, size_t n);
size_t hal_strlen(char *s);
int hal_memcmp(const void *s1, const void *s2, int len);
#if defined(__x86_64__)
# define HAL_PAGE_SIZE 0x1000