crt_arch.h 192 B

12345678910111213
  1. __asm__("\
  2. .text \n\
  3. .global _start \n\
  4. _start: \n\
  5. xor %ebp,%ebp \n\
  6. mov %esp,%eax \n\
  7. and $-16,%esp \n\
  8. push %eax \n\
  9. push %eax \n\
  10. push %eax \n\
  11. push %eax \n\
  12. call __cstart \n\
  13. ");