The jmp instruction is used to unconditionally change the co…
The jmp instruction is used to unconditionally change the control flow of a program. The following piece of code uses jmp instruction. What is the value stored in %eax register after the code has been executed? movl $0, %eax movl $9, %ebx movl $10, %ecx jmp L1 movl %ecx, %eax L1: movl %ebx, %eax
Read Details