diff --git a/tiny-os/README.md b/tiny-os/README.md index e32fbe64f90d954e01d7a396228407c1ce960198..200a31f88fe021fa93e30a996a1ba734bd8bf4d8 100644 --- a/tiny-os/README.md +++ b/tiny-os/README.md @@ -36,7 +36,7 @@ tiny-os/ │ └── menu.lst # GRUB configuration ├── Makefile # Automates build processes └── README.md # Project documentation - +``` --- ## **3. Features** @@ -63,8 +63,9 @@ Key features of this project include: ## **4. Implementation Details** -Bootloader (loader.asm) -The bootloader adheres to the Multiboot specification and transfers control to the kernel: +### **Bootloader (loader.asm)** + +- The bootloader adheres to the Multiboot specification and transfers control to the kernel: ```asm global loader @@ -85,7 +86,7 @@ loader: call kernel_main hlt ``` -Kernel (kernel.c) +- Kernel (kernel.c) The kernel initializes the framebuffer and tests its driver: ```c