github.com/decomp/exp@v0.0.0-20210624183419-6d058f5e1da6/lift/x86/testdata/x86_64/import/import.asm (about)

     1  [BITS 64]
     2  
     3  extern exit
     4  
     5  global _start:function
     6  
     7  section .text
     8  
     9  _start:
    10  	mov     edi, 42
    11  	call    exit
    12  	ret