CreateOutputFile
我正在尝试使用,WriteToFile
和CloseFile
Irvine32 过程将双字数组写入磁盘文件。这是我的代码。
INCLUDE Irvine32.inc
.data
count = 45
BUFFER_SIZE = 188
filename BYTE "Fibonacci.txt",0
fileHandle DWORD ?
array DWORD 47 DUP(?)
num1 = 1
num2 = 1
temp1 DWORD ?
temp2 DWORD ?
.code
main PROC
mov edx,OFFSET filename
call CreateOutputFile
mov fileHandle,eax
mov esi,0
mov array[esi],num1
mov eax,array[esi]
mov temp1,eax
add esi,4
mov array[esi],num2
mov eax,array[esi]
mov temp2,eax
add esi,4
mov ecx, count
L1:
mov eax,0
mov ebx,0
mov eax,temp1
mov ebx,temp2
add eax,ebx
mov array[esi],eax
mov temp1,ebx
mov temp2,eax
add esi,4
loop L1
mov eax,fileHandle
mov edx,OFFSET array
mov ecx,BUFFER_SIZE
call WriteToFile
mov eax,fileHandle
call CloseFile
exit
main ENDP
END main
我每次调试后,都成功创建了一个文本文件,但是却变成了文本文件中一些无法识别的代码。我认为它应该是以十六进制显示的数组。
我真的不知道我哪里出错了。请帮我!谢谢!