Assembly Language "hello world" 十一月 02, 2016 $vim a.s hello: .string "Hello world\n" .globl main main: movl $4, %eax movl $1, %ebx movl $hello, %ecx movl $12, %edx int $0x80 ret $gcc -g a.s -o a 阅读全文