我试图简单地按顺序打印数字,即
1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20
使用循环,首先我将每个数字转换为 Hexa 打印,将其重置为十进制增量 1,然后打印下一个直到数字等于 9,当数字等于 9 时,我使用 DAA 来简化数字并旋转后并移动我最终将结果存储在字符串中的数字。
直到 16 点之前的输出都很好,但是在 16 点之后,序列会重复,
期望的输出:
1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20
电流输出 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,11,12,13,14,15
为什么会这样???
这是我的代码,
MOV CX,20 ;Number of Iterations
MOV DX,1
L1:
PUSH DX
ADD DX,30H
MOV AH,02H ;PRINT Content of DX
INT 21H
POP DX
ADD DX,1
CMP DX,09d ;If number is Greater than 9 jump to L2
JA L2
LOOP L1
L2:
PUSH DX
MOV AX,DX
DAA ;Convert to the Decimal
XOR AH,AH ;SET AH to 0000
ROR AX,1
ROR AX,1
ROR AX,1
ROR AX,1
SHR AH,1
SHR AH,1
SHR AH,1
SHR AH,1
ADC AX,3030h
MOV BX,OFFSET Result
MOV byte ptr[BX],5 ; Length of the String
MOV byte ptr[BX+4],'$' ;5th position of string , $=Terminator
MOV byte ptr[BX+3],AH ;2nd Number onto 4th position
MOV byte ptr[BX+2],AL ;3rd number onto 3rd Position
MOV DX,BX
ADD DX,02 ;1st 2 positions of String are type of string and
length respectively
MOV AH,09H ;to print the string
INT 21H
POP DX
ADD DX,1
LOOP L2
MOV AH,4CH ;Return control to the DOS
INT 21H
PS:我从这张图表中得到了帮助来理解这些数字。