Hi I just download it, and looked for all the files in the VS 2015(some where missing) and used the makeall.bat, I am trying to run a simple program to sum 3 numbers the code that I am using is as follows:
include \masm32\include64\masm64rt.inc
.386
.model flat,stdcall
.stack 4096
ExitProcess PROTO, dwExitCode:QWORD
.data
firstval QWORD 1111000000001100h
secondval QWORD 2222111100000011h
thirdval QWORD 3333222200001111h
sum QWORD 0
.code
main PROC
mov rax,firstval
add rax,secondval
add rax,thirdval
mov sum,rax
inkey str$(sum), " is the result in decimal"
exit
main ENDP
END main
But I can't make it work I tried with the masm32 editor and with the qeditor that comes with the 64 sdk but when I hit console build or assemble module in the other editor nothing happens, if I open the examples is the same, the only difference is that they run (maybe because of the .exe file) Hope someone can help me out maybe is my code that is wrong or I did not installed it properly the SDK 64