using a single plain english sentence describe the function ofthe subroutine mystery 4951999
Using a single plain-English sentence, describe the function ofthe subroutine
mystery,
.globl mystery
mystery:
movl $0, %eax
leaq (%rdi, %rsi), %rcx
loop:
cmpq %rdi, %rcx
jle endl
decq %rcx
cmpb $0x6f, (%rcx)
jne loop
incl %eax
jmp loop
endl:
ret Attached