曾经飞机

文章
3
资源
0
加入时间
2年10月17天

AT&A汇编helloworld

代码:[root@localhost as]# cat hello.s#hello.s.data #数据段声明 msg: .string "Hello,world!\n"#要输出的字符串 len=. -msg #字串长度.text #代码段声明.global _start #指定入口函数_start: movl $len,%edx #参数三 字符