摘要:
linux 32位汇编(hello world;)#hello.s.data #data msg : .string "Hello ,As Compliner!! Linux\n" len = . - msg.text.global _start _start : movl $len, %edx movl $msg, %ecx movl $1, %ebx movl $4, %eax int $0x80 movl $0, %ebx movl $1, %eax int $0x80 linux 64 位汇编:#hello... 阅读全文
posted @ 2012-09-11 21:42
huaixiaoz
阅读(433)
评论(0)
推荐(0)
