Assembly-x64 icon indicating copy to clipboard operation
Assembly-x64 copied to clipboard

My Collection of x64 Assembly programs with NASM

Assembly-Collection

My Collection of x64 Assembly programs with NASM

  • Assembly with:
$ nasm -f elf64 <program>.s -o <program>.o
  • Link with:
$ ld <program>.o -o <program>
  • Run with:
$ ./<program>