1
0

crt_arch.h 157 B

123456789
  1. __asm__(
  2. ".global _start\n"
  3. ".type _start,%function\n"
  4. "_start:\n"
  5. " mov x29, #0\n"
  6. " mov x30, #0\n"
  7. " mov x0, sp\n"
  8. " and sp, x0, #-16\n"
  9. " b __cstart\n");