Skip to content

Latest commit

 

History

History
36 lines (26 loc) · 826 Bytes

README.md

File metadata and controls

36 lines (26 loc) · 826 Bytes

Simple Example Assembly MASM64

prepare

Download MASM32 64bit here and unzip it to root \masm32 directory on any of partition.
Find ml64/link from "Visual Studio 20xx", Copy ml64.exe/link.exe etc. to \masm32\bin64 (filelist "Microsoft_File_List.txt" is under that directory).
You can download BuildTools for Visual Studio 2017

Compile

method 1: batch file

>makeit.bat

method 2: nmake

>cd simple_dialog
>nmake
>cd simple_exit
>nmake

method 3: cmake

>mkdir build & cd build & cmake -G"NMake Makefiles" ..
>nmake
>mkdir build & cd build & cmake -G"Visual Studio 15 2017 Win64" ..
>msbuild masm_simple.sln