diff --git a/src/main.rs b/src/main.rs index 61529e7..95a2d69 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,4 +1,4 @@ - +#![doc(html_logo_url = "assets/logo.svg", html_favicon_url = "assets/logo.svg")] #![warn(missing_docs)] #![warn(clippy::missing_docs_in_private_items)] @@ -7,10 +7,8 @@ //! Burritos is an educational operating system written in Rust //! running on RISC-V emulator. -/// Contain hardware simulated part of the machine mod simulator; mod kernel; -/// module containing useful tools which can be use in most part of the OS to ease the development of the OS pub mod utility; use std::{rc::Rc, cell::RefCell};