定义汇编入口的两种方法: 汇编程序的缺省入口是_start 标号;用户也可以在连接脚本文件中用 ENTRY 标志指明其它入口点; 【例4】定义入口点 .section.data <initialized data here> .section .bss <uninitialized data here> .section .text .globl _start _start: <instruction code goes here>