Re: Strange Linking Problem

2005-03-13 Thread Matthias-Christian Ott
linux-os wrote: On Sat, 12 Mar 2005, Matthias-Christian Ott wrote: Hi! I hope I'm right here. I've the following assembler code: SECTION .DATA hello: db 'Hello world!',10 helloLen: equ $-hello SECTION .TEXT GLOBAL main main: ; Write 'Hello world!' to the screen m

Re: Strange Linking Problem

2005-03-12 Thread linux-os
On Sat, 12 Mar 2005, Matthias-Christian Ott wrote: Hi! I hope I'm right here. I've the following assembler code: SECTION .DATA hello: db 'Hello world!',10 helloLen: equ $-hello SECTION .TEXT GLOBAL main main: ; Write 'Hello world!' to the screen mov eax,4

Strange Linking Problem

2005-03-12 Thread Matthias-Christian Ott
Hi! I hope I'm right here. I've the following assembler code: SECTION .DATA hello: db 'Hello world!',10 helloLen: equ $-hello SECTION .TEXT GLOBAL main main: ; Write 'Hello world!' to the screen mov eax,4; 'write' system call mov ebx,1