Loops
Loops
2) Loops
Although you won't have to worry about writing a loop for any of these lessons, showing how a loop works is a good demo for the debugger.
Look at the code below, then execute it (no need to change it). Watch how the same code repeats, over and over, with rax
changing in each loop.
Notice how the code listing below isn't the same as what is executed in the debugger. In the History section of the debugger, the instructions will change to show what is executed to achieve what you describe in the assembly source code.
Another example challenge, no answer here is needed. It simply shows how a loop is performed using Assembly.
1 2 3 4 5 6 7 8 9 10 11 12 13 |
|