LOOP指令
使用方法
mov cx,11 ;设定循环次数
s: add ax,ax ;重复执行 设置标号s
loop s ;判断 loop回到标号sDebug中跟踪LOOP
g 1012 # 一直执行直到IP=1012Last updated
mov cx,11 ;设定循环次数
s: add ax,ax ;重复执行 设置标号s
loop s ;判断 loop回到标号sg 1012 # 一直执行直到IP=1012Last updated