gpt4 book ai didi

loops - 汇编语言中的 While、Do While、For 循环 (emu8086)

转载 作者:行者123 更新时间:2023-12-03 13:19:59 28 4
gpt4 key购买 nike

我想将高级语言中的简单循环转换为汇编语言(对于 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 中的 Do-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,因为它几乎是标准的。对于其他循环条件,您可以使用自己喜欢的寄存器。当然,用您想要在循环中执行的所有指令替换无操作指令。

关于loops - 汇编语言中的 While、Do While、For 循环 (emu8086),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28665528/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com