Learning assembly [](https://github.com/hchiam/learning-assembly/blob/main/LICENSE)

April 15, 2022 ยท View on GitHub

Just one of the things I'm learning. https://github.com/hchiam/learning

https://www.youtube.com/watch?v=4gwYkEK0gOk

https://www.nasm.us

https://github.com/netwide-assembler/nasm

To compile/assemble code into an object file:

nasm -felf64 app.asm
ld app.o -o app

To run the output executable:

./app

Contents

  1. 1To compile/assemble code into an object file:
  2. 2To run the output executable: