PDF download Download Article PDF download Download Article

This tutorial allows you to use MASM which is an Assembly Language for x86 Processors. This is what your CPU interprets when you write a piece of code in a programming language like C++, Python, or Java and is translated by the compiler. Note: This tutorial only works for Windows devices and this guide uses Visual Studio Community edition, but you can use any edition of visual studio. If you already have Visual Studio installed, skip to the second part.

Part 1
Part 1 of 3:

Installing Visual Studio 2022 Community Edition

PDF download Download Article
  1. 1
    Navigate to the Visual Studio download website. Scroll down and click on download Visual Studio and from drop down menu, select the “Community 2022” option.
  2. 2
    Open the installer. Once you have downloaded the installer, click on the installer to open it. After the installer opens, it will ask you to pick what programming languages you want to install with Visual Studio and we will select “Desktop development with C++” and click on install.
  3. Advertisement
Part 2
Part 2 of 3:

Setting up MASM in Visual Studio

PDF download Download Article
  1. After installing Visual Studio, open Visual Studio and create a new project, and from there select the Empty Project. After selecting an empty project, it will ask you for a project name. You may name it whatever you would like. Then click “Create.”
  2. After you have created the project, go to the solution explorer on the left side and right-click on your project name, from the menu navigate to "Build Dependencies" -> Build Customizations. A small window will pop up from the window, check MASM, and hit “Ok.”
  3. 3
    Add a new file to the project. Right-click on Template and navigate to Add Item, New File. Select the C++ File from the window and on the bottom change the name from “Source.cpp” to “main.asm”
  4. 4
    Copy and paste the template from the pastebin linked in the Things You'll Need section. You are advised to check that the build mode is set to x86 and not x64.
  5. 5
    Done! The IDE is now set to build MASM. However, these steps will need to be followed every time you need to build in MASM so to make it easier, follow along in the third part of the tutorial which will show how to make a project template.
  6. Advertisement
Part 3
Part 3 of 3:

Creating A Project Template for a Visual Studio Project

PDF download Download Article
  1. To create the template, go to Project on the top, and then from the drop down menu, select "Export Template." A window will pop and then hit next. it will then ask you for a template name, icon and description. Name it “Assembly Language Project” and hit "Finish."
  2. 2
    Create a new project. After creating the template, all that's needed to do build MASM is to create a new project in visual studio and search up the template name in the search bar.
  3. Advertisement

Expert Q&A

Ask a Question
      Advertisement

      Tips

      Submit a Tip
      All tip submissions are carefully reviewed before being published
      Name
      Please provide your name and last initial
      Thanks for submitting a tip for review!

      Things You'll Need

      About This Article

      Thanks to all authors for creating a page that has been read 44,849 times.

      Is this article up to date?

      Advertisement