Build error in Visual Studio with assembly -


i have visual studio express 2015 , try learn assembly kip irvine package. when try build project got error message. it's code lnk1104 , message cannot open file 'c:\irvine\examples\project32\debug\project.exe'. code opened addtwo.asm file package.

; addtwo.asm - adds 2 32-bit integers. ; chapter 3 example  .386 .model flat,stdcall .stack 4096 exitprocess proto,dwexitcode:dword  .code main proc     mov eax,5                    add eax,6                 invoke exitprocess,0 main endp end main 

i tried build listing file , without it, tried copy asm file project32 folder , build 1 error same.


Comments