Answer the question
In order to leave comments, you need to log in
Where to get external files in masm?
I have Visual Studio 2015. There I have created a project. In this project, I created an empty source file with the .asm extension. Then I checked masm in Build Dependencies and set Microsoft Macro Assembler to my .asm file in properties in the Item Type field.
Then I found a simple program on the Internet that, in theory, adds 2 numbers:
.386
.model flat
.data
.code
start:
mov eax,3
add eax,2
ret
end start
include \masm32\include\windows.inc
extrn ExitProcess:PROC
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question