@@ -73,7 +73,7 @@ In assembly, loops are implemented with a mechanism similar to that of C. Loops
...
@@ -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.
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
#### 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.