diff --git a/README.md b/README.md index ffa0f9878a7b054d3bb601fde6ecb399ed0aaedb..729d53dbe342f7196ce24fb3924991e97d4006ca 100644 --- a/README.md +++ b/README.md @@ -73,7 +73,7 @@ In assembly, loops are implemented with a mechanism similar to that of C. Loops Conditional statements in assembly are implemented using comparison and jump instructions, like `cmp` and `jne`. This can be directly mapped to if-else statements in C. #### 2.4 Added Variables -In the program, I have added the variables `start_range` and `end_range` to define the range for summing values or performing other calculations. +In the program, I have added the variables `start_range` and `end_range` to define the range for summing values. ## Worksheet 2