Custom MASM64 SDK (created in 2015) that I put together for my personal assembly language projects. Includes the MASM64 assembler.
- Extract masm64sdk.zip file to C:\ or root directory
- Assemble .asm file(s) with ml64.exe found in masm64\bin via Command Prompt
- Link resulting .obj file(s) with link.exe found in masm64\bin via Command Prompt
- May also use batch file examples found in masm64\examples for reference
\MASM64\BIN\ml64 /c myassemblyprogram.asm
\MASM64\BIN\link /subsystem:console /entry:main myassemblyprogram.obj