From fa23155c350a951a213a922761fed1b9571b0d92 Mon Sep 17 00:00:00 2001
From: "Le10.Anh@live.uwe.ac.uk" <le10.anh@live.uwe.ac.uk>
Date: Sat, 14 Dec 2024 06:44:22 +0000
Subject: [PATCH] Update file README.md

---
 src/README.md | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/README.md b/src/README.md
index 8a2d46f..60094a8 100644
--- a/src/README.md
+++ b/src/README.md
@@ -5,7 +5,6 @@ This repository contains the solutions for Worksheet 1 of the Operating Systems
 
 ## Directory Structure
 The repository should have the following structure:
-```
 repo-name/
 ├── README.md
 ├── src/
@@ -15,8 +14,9 @@ repo-name/
 │   ├── task1.asm
 │   ├── task2_1.asm
 │   ├── task2_2.asm
-│   └── Makefile
-```
+│   ├── Makefile
+│   └── image/
+│      
 
 ## Task 1: Adding Two Integers
 In this task, we implement an assembler program that contains a function `asm_main` to add two integers stored in global memory and output the result.
@@ -102,7 +102,7 @@ clean:
    ```bash
    make clean
    ```
-
+![Example 1](src/image/task1.png)
 ## Task 2.1: Loops and Conditionals in Assembly
 
 This task demonstrates loops and conditionals in x86 assembly language. The program prompts the user to input their name and the number of times to print a welcome message, validating the count before proceeding. Invalid inputs are handled gracefully.
-- 
GitLab