我正在尝试编写我的第一个 asm 程序。到目前为止,这是我的程序的代码;
.data
hello: .string "Hello World!!!!\n"
format: .string "%s\n"
.text
.global _start
_start:
push hello
push format
call printf
movl $1, %eax #exit
movl $0, %ebx
int $0x80
分段故障。