Skip to content

Latest commit

 

History

History
16 lines (14 loc) · 309 Bytes

nasm-cheat-sheet.md

File metadata and controls

16 lines (14 loc) · 309 Bytes

nasm-cheat-sheet

  1. Create object file
# Note! You need to specify the format for a output file. Default is bin.

nasm -w+all -f elf file.asm -o file.o
  1. See list numbers of interrupts
cat /usr/include/asm/unistd_64.h
  1. objdump useful command:
objdump -drwC -Mintel