Sorry, if this is not the right board.
.MODEL SMALL
.STACK
.CODE
mov ah, 1h
mov cx, 07h
int 10h
mov ah, 4ch
int 21h
END
I assembled above assembly code(copied it from a tutorial) on my windows xp, intel computer, and got an .obj file.
Then tried to link it but got the following warning and error messages on masm32:
first.obj : warning LNK4078: multiple ".data" sections found with different attributes (C0220040)
LINK : error LNK2001: unresolved external symbol _WinMainCRTStartup
first.exe : fatal error LNK1120: 1 unresolved externals
Why is this please?
Thanks.



LinkBack URL
About LinkBacks


