汇编编程和过程调用的问题
我正在使用 MASM 进行一些汇编编程。当我尝试运行我的程序时,它会在遇到“call myFunction”时立即崩溃,即使我从过程中删除了所有代码也是如此。这是我的代码,任何帮助将不胜感激。
.486
.model flat
.stack 100h
ExitProcess PROTO NEAR32 stdcall, dExitCode:DWORD
.code
_start:
call myFunction
INVOKE ExitProcess,0
PUBLIC _start
myFunction proc near32
myFunction endp
END
I am using MASM to do some assembly programming. When I try to run my program it crashes immediately when it encounters "call myFunction", even after I've stripped out all the code from the procedure. Here is my code any help would be greatly appreciated.
.486
.model flat
.stack 100h
ExitProcess PROTO NEAR32 stdcall, dExitCode:DWORD
.code
_start:
call myFunction
INVOKE ExitProcess,0
PUBLIC _start
myFunction proc near32
myFunction endp
END
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将 myFunction 更改为
使其成为存根。在您的版本中,它没有指令,因此它执行内存中跟随的任何内容。
Change myFunction to
to make it a stub. In your version, it has no instructions, so it executes whatever follows it in memory.