《汇编语言_基于x86处理器》总结-初窥门径

一、用汇编语言在centos下打印helloworld

vim hello.s

并输入以下内容

#hello.s 
.data                    # 数据段声明
        msg : .string "Hello, world!\\n" # 要输出的字符串
        len = . - msg                   # 字串长度
.text                    # 代码段声明
.global _start           # 指定入口函数
        
_start:                  # 在屏幕上显示一个字符串
        movl $len, %edx  # 参数三:字符串长度
        movl $msg, %ecx  # 参数二:要显示的字符串
        movl $1, %ebx    # 参数一:文件描述符(stdout) 
        movl $4, %eax    # 系统调用号(sys_write) 
        int  $0x80       # 调用内核功能
        
                         # 退出程序
        movl $0,%ebx     # 参数一:退出代码
        movl $1,%eax     # 系统调用号(sys_exit) 
        int  $0x80       # 调用内核功能

然后执行

as -o hello.o hello.s
ld -s -o hello hello.o
./hello
汇编语言代码需要经过汇编器转码,链接器链接,才能最终执行


猜你喜欢

转载自blog.csdn.net/u013214292/article/details/79489660