Files
2023-10-15 17:48:51 +03:00

10 lines
97 B
NASM

.data
extern ProcAddr : qword
.code
JMPToProc proc
jmp qword ptr [ProcAddr]
JMPToProc endp
end