1
0

crt_arch.h 258 B

123456789101112
  1. __asm__("\
  2. .global _start \n\
  3. _start: \n\
  4. mov r15, r4 \n\
  5. mov #-16, r0 \n\
  6. and r0, r15 \n\
  7. bsr __cstart \n\
  8. nop \n\
  9. ");
  10. /* used by gcc for switching the FPU between single and double precision */
  11. const unsigned long __fpscr_values[2] = { 0, 0x80000 };