News:

MASM32 SDK Description, downloads and other helpful links
MASM32.com New Forum Link
masmforum WebSite

linking problems

Started by setty, November 10, 2006, 09:28:01 PM

Previous topic - Next topic

setty

i'm trying to compile some simple code

.486
.model flat, stdcall
option casemap :none   ; case sensitive
.code

end

but when linking got error:
Quote
LINK : error LNK2001: unresolved external symbol _mainCRTStartup
void.exe : fatal error LNK1120: 1 unresolved externals
compiling in the way of runing such a *.bat file

ml.exe /coff /nologo /c %1.asm
link /nologo /subsystem:console /libpath:C:\SETTY\PROGRAMS\ASM\masm32\lib\ %1.obj


whot can be wrong there?

ragdog

hi

.486
.model flat, stdcall
option casemap :none   ; case sensitive



.code

start:

end start

ragdog

setty


ragdog