mirror of
https://github.com/barkeser2002/ripcord-fix.git
synced 2026-09-25 01:09:53 +03:00
10 lines
97 B
NASM
10 lines
97 B
NASM
.data
|
|
extern ProcAddr : qword
|
|
|
|
.code
|
|
JMPToProc proc
|
|
jmp qword ptr [ProcAddr]
|
|
JMPToProc endp
|
|
|
|
end
|