The MASM Forum Archive 2004 to 2012

Miscellaneous Forums => 16 bit DOS Programming => Topic started by: lord_kalipsy on January 11, 2005, 11:23:47 PM

Title: Assembling error with masm.
Post by: lord_kalipsy on January 11, 2005, 11:23:47 PM
Hi,

I already have a small experiance of programming with masm32 for windows, but it's not the best solution to test wath I'm learning in the Art of Assembly. This is why I started DOS programming with MASM ( It's possible to do 16bits programming with MASM32 ? ) but I got problems when I'm assembling/linking.

This is my code :


.model small
.stack
.data
message   db "Hello world", "$"

.code

main   proc
   mov   ax,seg message
   mov   ds,ax

   mov   ah,09
   lea   dx,message
   int   21h

   mov   ax,4c00h
   int   21h
main   endp
end main


And I assemble/link like that :

ml hello.asm
link hello.obj

(everything is in the same folder )

I tried a lot of exemple ( I've found some in the RadASM exemples, even if I don't use RadASM for this code ).

The error the linker give is :

hello.obj : fatal error LNK1123: failure during conversion to COFF: file invalid or corrupt

Thanks for your help.

Ps : sorry for my bad english, it's note my motherthong.

Psy³
Title: Re: Assembling error with masm.
Post by: MichaelW on January 12, 2005, 01:12:07 AM
http://www.masmforum.com/simple/index.php?topic=251.0
Title: Re: Assembling error with masm.
Post by: jimh on January 12, 2005, 01:14:29 AM
You simply need a 16-bit linker to link your obj file into a 16-bit .exe.  The following topic on the old version of the MASM forum talks about this.  (the link in the thread Michael's post gives needed to be updated.)

http://www.old.masmforum.com/viewtopic.php?t=4838
Title: Re: Assembling error with masm.
Post by: lord_kalipsy on January 12, 2005, 03:58:17 AM
Thanks a lots, it works :)