1 2 3 4 5 6 7 8 9 10 11
extern void main(void*); __attribute__((section(".text.start"))) __attribute__((naked)) void _start(void) { __asm__ volatile("\ popq %%rdi; \ jmp main"::); }