汇编编程和过程调用的问题

发布于 2024-10-26 12:35:31 字数 359 浏览 1 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

一身仙ぐ女味 2024-11-02 12:35:32

将 myFunction 更改为

myFunction  proc  near32
     ret
myFunction  endp

使其成为存根。在您的版本中,它没有指令,因此它执行内存中跟随的任何内容。

Change myFunction to

myFunction  proc  near32
     ret
myFunction  endp

to make it a stub. In your version, it has no instructions, so it executes whatever follows it in memory.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文