C语言中结构体定义实际上相当于变量入栈
摘要:
struct context { int edi; int esi; int ebx; int ebp; int eip;}; 对应的入栈顺序是 pushl %esp pushl %eip pushl %ebp pushl %ebx pushl %esi pushl %edi 阅读全文
posted @ 2016-06-13 16:13 Joker_88 阅读(611) 评论(0) 推荐(0)
posted @ 2016-06-13 16:13 Joker_88 阅读(611) 评论(0) 推荐(0)