View Single Post
Old 04-01-2006, 07:28 AM   #1 (permalink)
psyb0rg
 
Newb Techie

Join Date: Mar 2005

Posts: 39

psyb0rg

Default Basic Assembly Language question

I tried to compile and link the following code:


TITLE Test


INCLUDE Irvine32.inc

.code
main PROC

mov eax,10000h ; EAX = 10000h
add eax,40000h ; EAX = 50000h
mov ebx,20000h ; EAX = 30000h



main ENDP
END main


during thte linking, I get the following error: invalid object module
Anyone know whats wrong here?
I m using MASM 6
psyb0rg is offline