개발은 하는건가..

C언어 지정된 주소로 점프 본문

C, C++, MFC

C언어 지정된 주소로 점프

수동애비 2018. 10. 31. 16:22
반응형

jump to 0 Addr

void (* reset_ptr)(void);


*(dword *)(&reset_ptr) = 0x00000000L;


reset_ptr();

 

 

Comments