汇编程序gas出错信息
最近再学《汇编语言程序设计》【(美)Richard Blum著】,这本书里面出现的例子我都去试,可是再实验到了一个例子时出现了一个错误信息,让我百思不得其解。如下:程序:
# test4.s -An example of moving data from memory to a register
.section .data
value:
int 1
section .text
.globl _start
_start:
movl value,%ecx
movl $1,%eax
movl $0,%ebx
int $0x80
文件保存为test4.s
在ubuntu终端用as -gstabs -o test4.o test4.s执行后,显示了:
test4.s: Assembler messages:
test4.s:0: Warning: end of file not at end of a line; newline inserted
test4.s:6: Error: junk at end of line, first unrecognized character is `:'
哪位哥们能逐行解释一下发生了什么事情吗?为什么会出现这个错误?百度了很久都找不到答案,帮帮忙!
(这个例子程序汇编成功后,只是想用gdb命令来看看程序在寄存器之间传送数据的原理和过程,所以没有输出的显示操作。)
[ 本帖最后由 xuzejia_love 于 2011-4-5 17:17 编辑 ]