✅ Перевірена відповідь на це питання доступна нижче. Наші рішення, перевірені спільнотою, допомагають краще зрозуміти матеріал.
Now start the debugger with the "Debug" button.
In the Debug menu please make sure that the box Show registers is checked:
Now, using Step over, move to the next instruction, and the to the ret instruction.
movl $variables, %eaxretNow you should see something similar to this:
In the Registers section, you can see what's in the internal registers of the CPU. The highlighted instruction moved the address under the variables label to the eax register. So please read that value in hexadecimal and write that value to the answer box using the provided template. Also note that value because we'll use it later.
If you use Windows it probably will be something like 0x402000, and if you use Linux then rather something like 0x804c020.Do not exit the debug session yet ;)