📜  汇编中的while循环 - 无论代码示例

📅  最后修改于: 2022-03-11 14:57:51.899000             🧑  作者: Mango

代码示例1
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