Chinaunix首页 | 论坛 | 博客
  • 博客访问: 1119197
  • 博文数量: 284
  • 博客积分: 8223
  • 博客等级: 中将
  • 技术积分: 3188
  • 用 户 组: 普通用户
  • 注册时间: 2008-12-01 13:26
文章分类

全部博文(284)

文章存档

2012年(18)

2011年(33)

2010年(83)

2009年(147)

2008年(3)

分类: LINUX

2009-09-17 19:11:42

sem.s
 

.section .data
helloworld:
.ascii "hello\n\0"
.section .text
.globl _start
_start:
 pushl $helloworld
 call printf
 pushl $0
 call exit

 

编译:

as sem.s -o sem.o

ld -dynamic-linker /lib/ld-linux.so.2 -o sem sem.o -lc

阅读(622) | 评论(0) | 转发(0) |
0

上一篇:汇编练习-读写文件

下一篇:运行时错误

给主人留下些什么吧!~~