From 1b5337080020767bb9296a681a005d85e30f5576 Mon Sep 17 00:00:00 2001 From: shibedrill Date: Mon, 10 Feb 2025 10:29:08 -0500 Subject: [PATCH] Fixed documentation and bump version --- Cargo.lock | 2 +- Cargo.toml | 2 +- README.md | 3 ++- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 1180c20..4f47b1e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -55,7 +55,7 @@ checksum = "875488b8711a968268c7cf5d139578713097ca4635a76044e8fe8eedf831d07e" [[package]] name = "gila" -version = "0.1.0" +version = "0.1.1" dependencies = [ "flagset", "lazy_static", diff --git a/Cargo.toml b/Cargo.toml index eaf645c..eb61549 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "gila" -version = "0.1.0" +version = "0.1.1" edition = "2024" [dependencies] diff --git a/README.md b/README.md index ff84387..d2481fc 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ -# Gila v0.1.0 - a Rust Microkernel +# Gila v0.1.1 - a Rust Microkernel Gila is a Rust microkernel OS, inspired by the Xinu embedded OS. It will hopefully be capable of multitasking some day. I do not intend for Gila to @@ -16,6 +16,7 @@ Licensed under the GNU Public License v3. See [LICENSE](LICENSE) for details. ## Navigating - [boot.rs](src/boot.rs): Handles bootloader handoff. Gila uses Limine. Other bootloaders are NOT supported. +- [display.rs](src/display.rs): Handles text-mode display via the VGA buffer. - [lib.rs](src/lib.rs): Glue to make all files accessible from [main.rs](src/main.rs). - [main.rs](src/main.rs): The entry point that gets called by the bootloader. - [memory.rs](src/memory.rs): Types relating to memory regions and allocation.