
machine language
akiyame
这个作者很懒,什么都没留下…
展开
-
JNB, JBE, JGE, JLE 指令的转移条件
转自: JNB al, bl ;al里的内容不等于bl时跳转 JBE al, bl ;al里的内容小于或等于bl时跳转 ;同理,JGB是大于或等于,JLE是小于或等于 ;A(above)大于,B(below)小于,E(equal)等于,用于比较无符号数 ;G(great)大于,L(less than)小于, E(equal)等于,用于比较带符号数 转载 2014-10-19 15:38:37 · 36442 阅读 · 2 评论 -
How does “mov (%ebx,%eax,4),%eax” work?
转自: http://stackoverflow.com/questions/14900343/how-does-mov-ebx-eax-4-eax-work The complete memory addressing mode format in AT&T assembly is: offset(base, index, width) So for your转载 2014-10-19 15:42:17 · 2421 阅读 · 0 评论