Skip to content

Latest commit

 

History

History
14 lines (11 loc) · 657 Bytes

README.md

File metadata and controls

14 lines (11 loc) · 657 Bytes

Nasm Examples

Just some things in nasm

Instructions

  • Go to the folder you want to try
  • make build will compile and link the nasm file
  • Then you can run the .bin file outputed
  • make clean will remove those files created by the previous command

Examples

  • Hello world -> just a prints a "hello world" message to the console
  • Add two numbers -> adds two hardcoded numbers together and then it prints the result to the console
  • Read from user input -> prompts a user and then prints the string provided