remove shared crate

This commit is contained in:
2025-10-06 00:25:56 -06:00
parent 28417cce69
commit 76c7870a79
7 changed files with 2 additions and 32 deletions

View File

@@ -11,9 +11,8 @@ Current focus is on **expanding the ABI syscalls** and **fixing the MSC/USB-SCSI
## Project Structure
- **`kernel/`** The core OS kernel (task scheduling, drivers, memory, etc.)
- **`abi_sys/`** Shared application binary interface definitions for kernel ↔ userspace interaction
- **`abi/`** ABI helpers and abstractions for easier development
- **`shared/`** Shared utilities and common code across kernel and user applications
- **`abi_sys/`** Shared application binary interface definitions for kernel ↔ userspace (Repr "C")
- **`abi/`** Rust focused ABI helpers and abstractions for easier development
- **`user-apps/`** Collection of userspace programs (calculator, snake, etc.)
## Features