它说操作码和操作数的组合无效
section .data
name: db "What is your name?"
name_L: equ $-name
hello: db "Hello"
hello_L: equ $-hello
section .bss
name_V resb 255
section .test
global _start:
_start:
mov eax, 4
mov eax, 1
mov ecx, name
mov edx, name_L
int 80h
mov eax, 3
mov ebx, 0
mov ecx, name_V
mov edx, 255
int 80h
int eax, 4
mov ebx, 1
mov ecx, hello
mov edx, hello_L
int 80h
mov eax, 4
mov ebx, 1
mov ecx, name_V
mov edx, 255
int 80h
mov eax, 1
mov eax, 0
int 80h