The MASM Forum Archive 2004 to 2012

Miscellaneous Forums => 16 bit DOS Programming => Topic started by: KAKA CHJ on April 07, 2007, 03:55:08 AM

Title: [Question] ^_^ How can I make .com program?
Post by: KAKA CHJ on April 07, 2007, 03:55:08 AM
I have two assembler package, one is masm 5.1, and the other one is masm 9.0

so all of my .asm file on my textbook is compiled & linked correctly,

there's a problem to link that .obj file by masm 9.0 linker.

it displays different error messages for every other cord in textbook.

no problem in compiling, just only in linking by masm 9.0.

following is one of the error message :

LINK : error LNK2001: unresolved external symbol _mainCRTStartup

if I set the linker option like this : link a.obj /entry:main
then it links with no errors but it doesn't work(run) correctly. the debug window pops up.

I'm studying on 16bit dos assembly programming, so, does it cause problem to study with masm32 9.0?
can't it make any .com files?

i have to study with masm 5.1?

anyone please help me ^_^
Title: Re: [Question] ^_^ How can I make .com program?
Post by: hutch-- on April 07, 2007, 04:05:58 AM
The masm32 project is 32 bit only. If your course work is required in masm 5.1 then you should be using masm 5.1.
Title: Re: [Question] ^_^ How can I make .com program?
Post by: MichaelW on April 07, 2007, 04:46:51 AM
KAKA CHJ,

The linker in the MASM32 package cannot link 16-bit programs. You need to use a 16-bit linker for this. To create a .COM file with the more recent 16-bit linkers you use the /tiny switch. To create a .COM file with MASM 5.1 you link the object module to produce a .EXE file, and then use EXE3BIN.EXE to produce the .COM file from the .EXE file. In either case, the object module must not contain segment references.