鱼C论坛

 找回密码
 立即注册
查看: 3609|回复: 1

汇编的书写顺序问题

[复制链接]
发表于 2020-10-10 22:23:44 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
代码如下,最简单的Hello world

section .text    ;section declaration

global _start

_start:

        mov     edx,len ;third argument: message length
        mov     ecx,msg ;second argument: pointer to message to write
        mov     ebx,1   ;first argument: file handle
        mov     eax,4   ;system call number (sys_write)
        int     0x80    ;call kernel

        mov     ebx,0   ;first syscall argument: exit code
        mov     eax,1   ;system call number (sys_exit)
        int     0x80    ;call kernel

section .data               ;section declaration

        msg     db      "Hello, World!",0xa ;our dear string
        len     equ     $ - msg                 ;length of our dear string


汇编执行都没问题,但是这样写

section .text    ;section declaration

global _start

section .data               ;section declaration

        msg     db      "Hello, World!",0xa ;our dear string
        len     equ     $ - msg                 ;length of our dear string

_start:

        mov     edx,len ;third argument: message length
        mov     ecx,msg ;second argument: pointer to message to write
        mov     ebx,1   ;first argument: file handle
        mov     eax,4   ;system call number (sys_write)
        int     0x80    ;call kernel

        mov     ebx,0   ;first syscall argument: exit code
        mov     eax,1   ;system call number (sys_exit)
        int     0x80    ;call kernel


把data section写到start前面为啥就汇编错误呢?
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

 楼主| 发表于 2020-10-10 22:25:27 | 显示全部楼层
汇编代码中,_start入口符号所在的段必须卸载最后面吗?还是说这就是Intel语法?书写顺序上有啥讲究吗?谢谢。
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-11-6 07:52

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表