From 6378a5c6900815e2a28e7b3fbcbda096e495e4a5 Mon Sep 17 00:00:00 2001
From: "Hazal2.Veziroglu@live.uwe.ac.uk" <hazal2.veziroglu@live.uwe.ac.uk>
Date: Sat, 7 Dec 2024 00:27:06 +0000
Subject: [PATCH] Update file README.md

---
 tiny-os/README.md | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/tiny-os/README.md b/tiny-os/README.md
index e32fbe6..200a31f 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
-- 
GitLab