汇编语言中的 While、Do While、For 循环 (emu8086)
While, Do While, For loops in Assembly Language (emu8086)
我想将高级语言中的简单循环转换为汇编语言(对于 emu8086)说,我有这样的代码:
for(int x = 0; x<=3; x++)
{
//Do something!
}
或
int x=1;
do{
//Do something!
}
while(x==1)
或
while(x==1){
//Do something
}
如何在 emu8086 中执行此操作?
For 循环:
C 中的 For 循环:
for(int x = 0; x<=3; x++)
{
//Do something!
}
8086 汇编器中的相同循环:
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
如果您需要访问您的索引 (cx),这就是循环。如果你只想做 0-3=4 次但不需要索引,这会更容易:
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
循环执行
在 C:
中执行 while 循环
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 循环
C 中的 While 循环:
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
对于 for 循环,您应该使用 cx-register,因为它非常标准。对于其他循环条件,您可以根据自己的喜好进行注册。当然用你想在循环中执行的所有指令替换无操作指令。
Do{
AX = 0
AX = AX + 5
BX = 0
BX= BX+AX
} While( AX != BX)
做 while 循环总是在每次迭代结束时检查循环条件。
我想将高级语言中的简单循环转换为汇编语言(对于 emu8086)说,我有这样的代码:
for(int x = 0; x<=3; x++)
{
//Do something!
}
或
int x=1;
do{
//Do something!
}
while(x==1)
或
while(x==1){
//Do something
}
如何在 emu8086 中执行此操作?
For 循环:
C 中的 For 循环:
for(int x = 0; x<=3; x++)
{
//Do something!
}
8086 汇编器中的相同循环:
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
如果您需要访问您的索引 (cx),这就是循环。如果你只想做 0-3=4 次但不需要索引,这会更容易:
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
循环执行
在 C:
中执行 while 循环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 循环
C 中的 While 循环:
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
对于 for 循环,您应该使用 cx-register,因为它非常标准。对于其他循环条件,您可以根据自己的喜好进行注册。当然用你想在循环中执行的所有指令替换无操作指令。
Do{
AX = 0
AX = AX + 5
BX = 0
BX= BX+AX
} While( AX != BX)
做 while 循环总是在每次迭代结束时检查循环条件。