This commit is contained in:
2026-01-16 16:35:32 -05:00
parent 70532f6e2c
commit df4823940d
2 changed files with 19 additions and 2 deletions

4
.gitignore vendored
View File

@@ -3,3 +3,7 @@
/build/ /build/
Build/ Build/
build/ build/
# VSCodeCounter
/.VSCodeCounter/
.VSCodeCounter/

View File

@@ -1,5 +1,18 @@
# HyperionOS # HyperionOS
**HyperionOS** is a modular, Unix-like (almost) operating system environment written entirely in Lua. It features a microkernel-inspired architecture with a robust system call (syscall) interface, a virtual file system (VFS), and a custom hypervisor for managing isolated tasks.
## Key Features
* **Modular Kernel:** Functionality is distributed across discrete kernel modules (`.kmod`), including IO, VFS, IPC, and TTY, allowing for a highly extensible system.
* **Hypervisor & Task Management:** A custom hypervisor manages threads in a task-based architecture.
--- ---
# Desclaimer
To build ## Build requirements
* **Source:** None it builds directly in vs-code, altough it is the biggest build method it gives the most readability
## Contributing