Install NASM and Run Assembly Hello world!

Опубликовано: 23 Май 2026
на канале: HelloUniverse
2
0

Learn how to install and set up Assembly programming tools on Debian/Linux step by step.
In this video, we install NASM, linker tools, and create our first Assembly program directly from the terminal.

Topics covered:

Installing NASM
Installing build tools
Using ld linker
Writing Assembly code with Vim/VS Code
Compiling and running Assembly programs
Linux terminal basics for Assembly development

Commands used:
sudo apt update
sudo apt install nasm build-essential

Compile and run:
nasm -f elf64 hello.asm -o hello.o
ld hello.o -o main
./hello

Perfect for beginners learning:

Assembly language
Low-level programming
Linux development
Computer architecture
System programming

00:00 install nasm and gcc
00:49 hello world code
02:17 run the code
02 :56 simple flow

#Assembly #Linux #Debian #NASM #Programming #LowLevelProgramming #x86Assembly #Coding #Vim #Terminal