Hi,
I have the same Problem, my code looks like this:
------------------------------------------
section .text
extern printf
global start
start:
push message
call printf
mov eax, 1
mov ebx, 0
int 80h
section .data
message: db "output some text", 10, 0
----------------------------------------------------------
asm & link commands: nasm -f elf -g test.asm && ld -o test test.o -lc
my OS is openSuse 11.1 (32-Bit)
couldn't solve this problem so far.
Regards,
Andreas Monsch