How to install NASM in windows 10?

I'm trying to learn assembly and want to download NASM I use Windows 10,is it possible to install NASM without using DosBox or VM ?? because I saw someone using CodeBlocks with NASM to code in assembly..

1

2 Answers

NASM has installers for Windows available from its website under the "Downloads" tab

The latest stable Win64 build (as of 15Sep2019) is available here:

1

An easy alternative for Windows 10 would be installing NASM with the winget Package Manager.

Run the Command Prompt as an Administrator and then:

Install NASM

winget install nasm -i 

Add it to the Path

setx Path "%Path%;C:\Program Files\NASM\" 

Restart the Command Prompt and verify

nasm --version 

NASM version 2.15.05 compiled on Aug 28 2020

1

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like