mirror of https://github.com/pwndbg/pwndbg.git
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.
18 lines
316 B
NASM
18 lines
316 B
NASM
global _start
|
|
|
|
; This binary is there to test
|
|
; emulate vs nearpc/u/pdisas commands
|
|
; The emulate should show just jump and one nop
|
|
; The rest should show jump and two nops
|
|
;
|
|
; Motivated by https://github.com/pwndbg/pwndbg/issues/315
|
|
|
|
_start:
|
|
mov rsi, string
|
|
mov rdi, rsp
|
|
mov rcx, 3
|
|
rep movsb
|
|
|
|
string db '12345', 0
|
|
|