小编use*_*288的帖子

如何用x86汇编语言编写循环?

我编写的代码到目前为止:

.code

main
 Clrscr

  mov dh,10            ;row 10

  mov dl,20            ;column 20

  call Gotoxy          ;locate cursor

  PromptForIntegers  

    WriteString       ;display string
    ReadInt           ;input integer
  ArraySum

    WriteString       ;display string
    WriteInt          ;display integer

DisplaySum  ENDP

END main
Run Code Online (Sandbox Code Playgroud)

如何使用循环重复相同的步骤三次,在每次循环迭代后清除屏幕?

x86 assembly loops

16
推荐指数
3
解决办法
12万
查看次数

标签 统计

assembly ×1

loops ×1

x86 ×1