section .data
msg db "hi"
section .text
global _start
_start:
lea rbx, msg
mov rax, 1
mov rdi, 1
mov rsi, [rbx]
mov rdx, 2
syscall
mov rax, 60
mov rdi, 0
syscall
这个64位的linux汇编代码..帮帮我..
(NASM)