发布时间:2014-06-27 19:28:20
以下内容转载自: movsbl和 movzblmovsbl 和 movzbl 是 mov 指令的两个扩展形式。考虑两种情形的 C 代码以及相应的汇编代码:movzbl点击(此处)折叠或打开unsigned char c = 0xA5;unsigned int a = c汇编代码点击(此处)折叠或打开.........【阅读全文】
发布时间:2014-06-27 19:20:23
对于以下的反汇编代码点击(此处)折叠或打开1000:0 b8 00 00 mov ax,0 ax=0 ip指向1000:31000:3 e8 01 00 call s pop ip ip指向1000:71000:6 40 inc ax1000:7 58 s:pop ax ax=6在网络上已经有相关的回答来解释 ip.........【阅读全文】
发布时间:2014-06-27 17:21:51
对于这些个指令的细究,也是在看ULK中的 switch_to的宏实现时候在切换进程A到进程B,调用__switch_to函数时,不直接使用 call,而是采用先 push 进程B的eip,然后调用 jmp,最后在__switch_to中返回时候通过 ret指令来切换到 进程B中eip标记位置的指令来执行(以上是题外话)对于 call和 jmp,都可以进行完成指令的跳转.........【阅读全文】
发布时间:2012-05-18 14:21:03
Refer:Using #error and #warning Compiler DirectivesAlthough not your everyday directives, #error and #warning definitely have there place. Let’s take a short look at a few examples where you might find these directives helpful. #error When the preprocessor runs into the #error direct.........【阅读全文】