作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想将高级语言中的简单循环转换为汇编语言(对于 emu8086)说,我有这个代码:
for(int x = 0; x<=3; x++)
{
//Do something!
}
int x=1;
do{
//Do something!
}
while(x==1)
while(x==1){
//Do something
}
最佳答案
For 循环:
C中的for循环:
for(int x = 0; x<=3; x++)
{
//Do something!
}
xor cx,cx ; cx-register is the counter, set to 0
loop1 nop ; Whatever you wanna do goes here, should not change cx
inc cx ; Increment
cmp cx,3 ; Compare cx to the limit
jle loop1 ; Loop while less or equal
mov cx,4 ; 4 iterations
loop1 nop ; Whatever you wanna do goes here, should not change cx
loop loop1 ; loop instruction decrements cx and jumps to label if not 0
times 4 nop
int x=1;
do{
//Do something!
}
while(x==1)
mov ax,1
loop1 nop ; Whatever you wanna do goes here
cmp ax,1 ; Check wether cx is 1
je loop1 ; And loop if equal
while(x==1){
//Do something
}
jmp loop1 ; Jump to condition first
cloop1 nop ; Execute the content of the loop
loop1 cmp ax,1 ; Check the condition
je cloop1 ; Jump to content of the loop if met
关于loops - 汇编语言中的 While、Do While、For 循环 (emu8086),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28665528/
我是一名优秀的程序员,十分优秀!