- 论坛徽章:
- 0
|
#readtest1.s --An example of reading data from a file
.section .bss
.lcomm buffer,42
.lcomm filehandle,4
.section .text
.globl main
main:
nop
movl %esp,%ebp #打开文件
movl $5,%eax
movl 8(%ebp),%ebx
movl $00,%ecx
movl $0444,%edx
int $0x80
test %eax,%eax
js badfile
movl %eax,filehandle
movl $3,%eax #读入文件内容
movl filehandle,%ebx
movl $buffer,%ecx
movl $42,%edx
int $0x80
test %eax,%eax
js badfile
movl $4,%eax #输出到标准输出
movl $1,%ebx
movl $buffer,%ecx
movl $42,%edx
int $0x80
test %eax,%eax
js badfile
movl $6,%eax #程序退出
movl filehandle,%ebx
int $0x80
badfile: #发现错误的时候转到此标签
movl %eax,%ebx
movl $1,%eax
int $0x80
这段代码是要打开一个文件,然后把它输出到标准输出,但是第一个参数没有传对,因为堆栈的问题,到底取8(%ebp)是不是取到第一个参数?问了老师,他没看我的代码,直接用gcc 加参数-S 给我发过来,真是狡猾!弄了一整夜还是没弄清楚程序参数的传递和程序开始的堆栈情况=_=! 明天继续!
本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u/24835/showart_264713.html |
|