From ea886f58a094c990203c8a3b23b93f9f611e05f4 Mon Sep 17 00:00:00 2001 From: apio Date: Wed, 12 Oct 2022 19:07:28 +0200 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 85747e62..28621a7d 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ Not so much at the moment. - x86_64-compatible [kernel](kernel/). - Keeps track of which [memory](kernel/src/memory/) is used and which memory is free, and can allocate memory for itself and [user programs](kernel/src/sys/mem.cpp). -- Can [load files](kernel/src/init/InitRD.cpp) from an [initial ramdisk](initrd/), no disk support yet. +- Can [load files](kernel/src/fs/) from an [initial ramdisk](initrd/), no disk support yet. - Basic preemptive multitasking, round-robin [scheduler](kernel/src/thread/) that can switch between tasks. - Can [load userspace ELF programs](kernel/src/sys/elf/) from the initial ramdisk as user tasks. - [System call](kernel/src/sys/) interface and bare-bones [C Library](libs/libc/).