Reverse Engineering challenge #49.

Tags: X64 LINUX ASM L1 .

What does this Linux-function do? AT&T assembly language syntax is used here.


main:
        pushq   %rbp
        movq    %rsp, %rbp
        movl    $2, %edi
        call    sleep
        popq    %rbp
        ret

More challenges: challenges.re; about solutions: challenges.re/#Solutions.