A Docker container for writing NASM x86 Assembly and C programs.
- Locate and download the accompanying files
by clicking on the
Download ZIP
section - Extract the
.zip
, rename it andcd
into that directory through your terminal - Run
make bash
and this will create a container you can work with - Create a file
welcome.asm
- Run
nasm -felf64 welcome.asm -o welcome.o && ld -o welcome.out welcome.o
- Run
chmod +x welcome.out && ./welcome.out
- You should see your desired output printed on your terminal
- OR, download the files here and follow the README.md