Tekkaman

导航

 

2013年5月18日

摘要: 【what is stubs?】 A stub is a small program routine that substitutes for a longer program, possibly to be loaded later or that is located remotely. For example, a program that uses Remote Procedure Calls (RPC) is compiled with stubs that substitute for the program that provides a requested procedure. 阅读全文
posted @ 2013-05-18 23:09 Tekkaman 阅读(279) 评论(0) 推荐(0)
 
摘要: 【x86 enter&leave 指令】 1、Enter的作用相当==push ebp和mov ebp,esp 2、Leave的作用相当==mov esp,ebp和pop ebp 参考:http://blog.csdn.net/zhangxinrun/article/details/5888425 阅读全文
posted @ 2013-05-18 22:52 Tekkaman 阅读(2680) 评论(0) 推荐(0)