From dcf4444d0d851b20842638ba3d179ab8fa58f9f1 Mon Sep 17 00:00:00 2001 From: apio Date: Sat, 11 Mar 2023 10:35:54 +0100 Subject: [PATCH] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index c845198c..264aa627 100644 --- a/README.md +++ b/README.md @@ -4,6 +4,7 @@ A simple kernel and userspace for desktop computers, written mostly in C++ and C ## Features - x86_64-compatible lightweight [kernel](kernel/). - Preemptive multitasking, with a round-robin [scheduler](kernel/src/thread/) that can switch between tasks. +- [Virtual file system](kernel/src/fs/) with a simple but working [tmpfs](kernel/src/fs/tmpfs/) populated from the initial ramdisk. - Can [load ELF programs](kernel/src/ELF.cpp) from the file system as userspace tasks. - [System call](kernel/src/sys/) interface and [C Library](libc/), aiming to be mostly POSIX-compatible. - Designed to be [portable](kernel/src/arch), no need to be restricted to x86_64.