9 lines
72 B
NASM
9 lines
72 B
NASM
.CODE
|
|
|
|
PUBLIC _get_safe_esp
|
|
_get_safe_esp:
|
|
MOV RAX,RSP
|
|
RET
|
|
|
|
END
|