Skip to content

Latest commit

 

History

History

Assembly

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

Assembly Hello World

Assembly is the lowest-level language that represents machine language in human-readable form.

run the program

You need to install codeblocks first and download NASM.

Extract NASM Installer in C:\Program Files (x86)\CodeBlocks\MinGW\bin

For run the program, you can use the command:

nasm -f win32 hello.asm -o hello.obj

Generate Exe file using GCC

gcc hello.obj -o hello.exe

Run Exe file