一个最基本的汇编程序如下所示: .section .data .section .text .globl _start _start: movl $, %eax # the number 1 is the number of the exit system call movl $, %ebx int $0x80 1..globl表示汇编器不能在汇编之后就丢弃该标识,因为接下来的连接器还会使用它._start是一个特殊的标识,它必须用.globl修饰,因为它代表了程序开始的入口 否则在链接的时候会…