Skip to content

Latest commit

 

History

History
12 lines (11 loc) · 791 Bytes

README.md

File metadata and controls

12 lines (11 loc) · 791 Bytes

A Docker container for writing NASM x86 Assembly and C programs.

How to use

  1. Locate and download the accompanying files by clicking on the Download ZIP section
  2. Extract the .zip, rename it and cd into that directory through your terminal
  3. Run make bash and this will create a container you can work with
  4. Create a file welcome.asm
  5. Run nasm -felf64 welcome.asm -o welcome.o && ld -o welcome.out welcome.o
  6. Run chmod +x welcome.out && ./welcome.out
  7. You should see your desired output printed on your terminal
  8. OR, download the files here and follow the README.md