如何在不包括 stdio.h 的情况下直接调用“printf”?
我在这里找到了一个有趣的教程:
http ://www.halcode.com/archives/2008/05/11/hello-world-c-and-gnu-as/
所以,这是我的尝试:
int main(){
char ss[] = "hello";
asm (
"pushl %ebp ;"
"movl %esp, %ebp ;"
"subl $4, %esp ;"
"movl $ss, (%esp) ;"
"call _printf ;"
"movl $0, %eax ;"
"leave ;"
"ret ;"
);
return 0;
}
我正在使用 MinGW 4.4,这是我的编译方式:
gcc -c hello.c -o hello.o
ld hello.o -o hello.exe C:/mingw/lib/crt2.o C:/mingw/lib/gcc/mingw32/4.4.0/crtbegin.o C: /mingw/lib/gcc/mingw32/4.4.0/crtend.o -LC:/mingw/lib/gcc/mingw32/4.4.0 -LC:/mingw/lib -lmingw32 -lgcc -lmsvcrt -lkernel32
不幸的是,它失败了:
hello.o:hello.c:(.text+0x26): 未定义对 `ss' 的引用
如何解决这个问题?