我尝试用 printf 函数编写简单的汇编程序。我编译它nasm -f elf 64
并使用gcc
. 运行后我看到了segmentation fault
。怎么了?
[Bits 32]
extern printf
global main
section .data
hello:
db "Hello", 0xa, 0
section .text
main:
push hello
call [printf]
add esp, 4
mov eax, 1
mov ebx, 0
int 80h