如何使用汇编语言在linux中使用

时间:2013-05-06 03:20:11

标签: linux assembly kernel

我正在学习Linux内核,所以我必须阅读一些汇编代码。这是一个示例代码


SYSWRITE=4
.globl mywrite,myadd
.text
mywrite:
    pushl %ebp
    movl %esp,%ebp
    pushl %ebx
    movl 8(%ebp),%ebx
    movl 12(%ebp),%ecx
    movl 16(%ebp),%edx
    movl $SYSWRITE,%eax
    int $0x80
    popl %ebx
    movl %ebp,%esp
    popl %ebp
    ret

myadd:
    pushl %ebp
    movl %esp,%ebp
    movl 8(%ebp),%eax
    movl 12(%ebp),%edx
    xorl %ecx,%ecx
    addl %eax,%edx
    jo 1f
    movl 16(%ebp),%eax
    movl %edx,(%eax)
    incl %ecx
1:  
    movl %ecx,%eax
    movl %ebp,%esp
    popl %ebp
    ret

我以这种方式使用as
as as -o callee.o callee.s“

编译它,但它失败了,上面写着这样的消息
“callee.s | 5 |错误:后缀或操作数对于'push'无效”

1 个答案:

答案 0 :(得分:3)

您可能位于64位计算机上,因此as默认为64位。由于您有32位代码,因此您想使用:

as -32 -o callee.o callee.s