【发布时间】:2011-04-04 12:19:24
【问题描述】:
引用自this question:
.text
call start
str:
.string "test\n"
start:
movl $4, %eax
movl $1, %ebx
pop %ecx
movl $5, %edx
int $0x80
ret
gcc -c test.S 给出:
test.S: Assembler messages:
test.S:8: Error: suffix or operands invalid for `pop'
【问题讨论】:
标签: assembly