mirror of
https://github.com/valinet/ExplorerPatcher.git
synced 2024-11-24 07:30:22 +01:00
18 lines
202 B
NASM
18 lines
202 B
NASM
|
EXTERN worker : PROC
|
||
|
|
||
|
.CODE
|
||
|
|
||
|
ep_extra_EntryPoint PROC EXPORT
|
||
|
PUSH RBP
|
||
|
MOV RBP, RSP
|
||
|
SUB RSP, 30H
|
||
|
CALL worker
|
||
|
CMP RAX, 0
|
||
|
JE finish
|
||
|
JMP RAX
|
||
|
finish:
|
||
|
LEAVE
|
||
|
RET
|
||
|
ep_extra_EntryPoint ENDP
|
||
|
|
||
|
END
|