NASM 编程 - `int0x80` 与 `int 0x80`

发布于 2024-10-27 02:55:40 字数 830 浏览 0 评论 0原文

我有一个简单的 NASM 程序,它只调用 sys_exit

segment .text
    global _start
    _start:
        mov eax, 1 ; 1 is the system identifier for sys_exit
        mov ebx, 0 ; exit code
        int 0x80 ; interrupt to invoke the system call

当我第一次编写它时,我犯了一个错误,忘记了 int0x80 之间的空格:

        int0x80

...但是程序仍然编译没有问题!

[prompt]> nasm -f elf MyProgram.asm
[prompt]> ld -o MyProgram MyProgram.o

当我运行它时,它只是给了我一个分段错误!

[prompt]> ./MyProgram
Segmentation fault

那么这个程序(我编写的原始程序,缺少空格)是做什么的呢? int0x80(没有空格)在 NASM 中意味着什么?

segment .text
    global _start
    _start:
        mov eax, 1
        mov ebx, 0
        int0x80 ; no space...

I have a simple NASM program which only invokes sys_exit:

segment .text
    global _start
    _start:
        mov eax, 1 ; 1 is the system identifier for sys_exit
        mov ebx, 0 ; exit code
        int 0x80 ; interrupt to invoke the system call

When I first wrote it, I made a mistake and forgot the space between int and 0x80:

        int0x80

... but the program still compiled without problem!

[prompt]> nasm -f elf MyProgram.asm
[prompt]> ld -o MyProgram MyProgram.o

It just gave me a segmentation error when I ran it!

[prompt]> ./MyProgram
Segmentation fault

So what does this program - the original one I wrote, with the missing space - do? What does int0x80 (with no space) mean in NASM?

segment .text
    global _start
    _start:
        mov eax, 1
        mov ebx, 0
        int0x80 ; no space...

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

冷心人i 2024-11-03 02:55:40

NASM 向我发出以下警告:

警告:没有冒号的行上单独的标签可能会出错

显然,拼写错误被视为标签,您可以像往常一样在程序中引用新的 int0x80 标签:

segment .text
    global _start
    _start:
        mov eax, 1 ; 1 is the system identifier for sys_exit
        mov ebx, 0 ; exit code
        int0x80 ; interrupt to invoke the system call

        jmp int0x80 ; jump to typo indefinitely

NASM 支持不带冒号的标签,我经常将其用于数据声明:

error_msg   db "Ooops", 0
flag        db 0x80
nullpointer dd 0

NASM is giving me this warning:

warning: label alone on a line without a colon might be in error

Apparently the typo gets treated as a label and you can reference the new int0x80 label in your program as usual:

segment .text
    global _start
    _start:
        mov eax, 1 ; 1 is the system identifier for sys_exit
        mov ebx, 0 ; exit code
        int0x80 ; interrupt to invoke the system call

        jmp int0x80 ; jump to typo indefinitely

NASM supports labels without colon, I often use that for data declarations:

error_msg   db "Ooops", 0
flag        db 0x80
nullpointer dd 0
清旖 2024-11-03 02:55:40

您需要在此行的末尾放置一个冒号:

Segment .text:

global _start
_start:
    mov eax, 1
    mov ebx, 0
    int0x80 ; no space...

You need to put a colon at the end of this line:

Segment .text:

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