You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
pwndbg/tests/binaries/host/long_function_x64.asm

40 lines
432 B
NASM

section .text
global _start
_start:
call function
mov rax, 2
mov rbx, 3
add rax, rbx
xor rax, rbx
nop
jmp exit
; make sure the entire function does not fit into the context disasm view
function:
nop
nop
nop
nop
nop
nop
nop
nop
nop
nop
nop
nop
nop
nop
nop
nop
nop
nop
ret
exit:
mov rax, 60
mov rdi, 0
syscall