mirror of
https://github.com/r00tkiter/PE2Shellcode
synced 2026-06-08 16:53:41 +00:00
13 lines
117 B
NASM
13 lines
117 B
NASM
public getCurrAddr
|
|
|
|
_TEXT SEGMENT
|
|
getCurrAddr PROC
|
|
call f;
|
|
f:
|
|
pop rax;
|
|
ret;
|
|
getCurrAddr ENDP
|
|
|
|
_TEXT ENDS
|
|
|
|
END |