c – Linux程序集和printf

前端之家收集整理的这篇文章主要介绍了c – Linux程序集和printf前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我尝试用printf函数编写简单的汇编程序.我编译它nasm -f elf 64并使用 gcc链接.运行后我看到分段故障.怎么了?
[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

解决方法

Linux on ia32不使用与amd64相同的调用约定.由于您的代码使用前者,您必须将其组装为32位并与32位libc链接.在debian上你需要libc6-dev-i386包.

你还必须用’call printf’替换’call [printf]’,这是一个错误.

另请注意,在使用主接口时,应从main返回,而不是执行退出系统调用以允许C运行时关闭代码运行.

Hello World example for x86-32 with build instructions.

如果您正在使用amd64,您可能想要学习如何编写64位汇编代码.

Hello World example for x86-64 with build instructions.

猜你在找的C&C++相关文章