false.s 372 B

12345678
  1. .text # Section for machine istructions to be executed
  2. .global _start # Needed by ld to find his default entry point
  3. _start: # _start symbol
  4. mov $60, %rax # Put "60" in %rax register. 60 = sys_exit call
  5. mov $1, %rdi # Set %rdi register to "1". %rdi = where to put
  6. # exit status argument of sys_exit
  7. syscall # Ask Linux to perform syscall indexed by %rax