我正在尝试学习x86_64 linux程序集。但是在尝试汇编汇编代码时我遇到了烦人的问题
这是程序
section .data
str db "12.3",0
section .text
global _start
_start:
mov rax, 60
mov rdi, 0
syscall
在尝试组装此程序时,nasm会给出错误
[heman-pc 13]# nasm -f elf64 1.asm
1.asm:2: error: comma, colon, decorator or end of line expected after operand
我无法弄清楚第二行有什么问题