x86汇编打印寄存器ascii

时间:2013-08-24 01:37:43

标签: assembly ascii masm

我意识到关于如何以十进制ASCII形式输出整数有很多问题/答案。我已经采取了一些代码并根据自己的需要对其进行了修改,但不是仅打印数字,而是继续打印乱码,窗口告诉我程序停止工作。我认为问题是它不断弹出堆栈的值,即使它应该突破循环。这是完整的代码:

.386
.model flat, stdcall
option casemap :none

include \masm32\include\windows.inc 
include \masm32\include\kernel32.inc 
include \masm32\include\masm32.inc 
includelib \masm32\lib\kernel32.lib 
includelib \masm32\lib\masm32.lib 

.data
base dd 10
ans dd ?

.code
start:
MOV ECX,3    ;I'm writing a compiler using
PUSH ECX     ;Jack Crenshaw's "Let's Build A Compiler!"
MOV ECX,9    ;This is just some sample output that I put in
ADD ECX,[ESP];The answer that prints out should be 42
PUSH ECX
MOV ECX,2
XOR EDX,EDX
POP EAX
IDIV ECX
MOV ECX,EAX
PUSH ECX
MOV ECX,7
IMUL ECX,[ESP]

mov eax,ecx
xor ecx,ecx
separateDigit: 
xor edx,edx
idiv base
push edx
inc ecx
cmp eax,0
jne separateDigit

printDigit: 
mov ans,0
pop ans
dec ecx
add ans,'0'
invoke StdOut,addr ans
cmp ecx,0
jne printDigit

invoke ExitProcess, 0
end start

那些没有长时间盯着它的人可以告诉我我做错了吗?

1 个答案:

答案 0 :(得分:0)

invoke来电可能不是“注册安全”,因此您需要保留ecx值:

printDigit: 
    mov ans,0
    pop ans
    dec ecx
    add ans,'0'
    push ecx     ; save ecx
    invoke StdOut,addr ans
    pop ecx      ; restore ecx
    cmp ecx,0
    jne printDigit