Home > Enterprise >  Assembly showing a lot of repeating code?
Assembly showing a lot of repeating code?

Time:06-02

So I'm working on some binary to assembly to c code. It's for a project.

When I disassemble the binary I'm getting a lot of repeating assembly code and I'm not sure what it's doing. It's almost like it's just pointing it's way down.

   0x0000000000000000 < 0>:     push   %rbp
   0x0000000000000001 < 1>:     mov    %rsp,%rbp
   0x0000000000000004 < 4>:     lea    0x0(%rip),%rsi        # 0xb <main 11>
   0x000000000000000b < 11>:    lea    0x0(%rip),%rdi        # 0x12 <main 18>
   0x0000000000000012 < 18>:    callq  0x17 <main 23>
   0x0000000000000017 < 23>:    callq  0x1c <main 28>
   0x000000000000001c < 28>:    mov               
  • Related