我正在做一个课堂项目,教授希望我们使用 MASM 而不是任何其他汇编程序。(我知道那很愚蠢,不要和我说话。)当我运行 ML.exe 来编译我的代码时,它崩溃了。不是我正在编写的程序,而是汇编程序本身。什么可能导致这种情况?它在运行之前已经运行了很长时间,所以它可能是某种无限循环。
这是我的代码:
.386
.MODEL FLAT
PUBLIC compute_b_proc
points EQU [ebp + 16]
bs EQU [ebp + 12]
n EQU [ebp + 10]
m EQU [ebp + 8]
.CODE
compute_b_proc PROC NEAR32
push ebpi
mov ebp, esp
mov ax, n
cmp ax, m
je base_case
mov ax, m
inc ax
pushd points
push n
push m
call compute_b_proc
push eax
fld DWORD PTR [esp + 8]
pop eax
mov ax, n
dec ax
pushd points
push n
push m
call compute_b_proc
push eax
fld DWORD PTR [esp + 4]
pop eax
fsubp
lea eax, points
mov ebx, n
shr ebx, 3
add eax, ebx
fild REAL4 PTR [eax + 4]
lea eax, points
mov ebx, m
shr ebx, 3
add ebx, 4
add eax, ebx
fild REAL4 PTR [eax]
fsubp
fdivp
pushd 0
fstp DWORD PTR [eax + 4]
pop eax
mov esp, ebp
pop ebp
ret 12
lea eax, points
mov ebx, n
shl ebx, 3
add eax, ebx
mov eax, DWORD PTR[eax]
mov esp, ebp
pop ebp
ret 12
compute_b_proc ENDP
END
MASM 可以很好地编译其他文件。错误消息只是“ML.exe 已停止工作”,仅此而已。我应该注意到我使用的是 MASM 6.11 版。这是教授提供的。
似乎是浮点指令使它崩溃。我重新安装了 MASM,但它仍然在所有浮点上崩溃。