arm_fix_v4bx.s 351 B

123456789101112131415161718
  1. .syntax unified
  2. .text
  3. # Align this to 256-byte boundary for easier address matching.
  4. .align 8
  5. # We do not want to run this file. We define _start here to avoid missing
  6. # entry point.
  7. .global _start
  8. .type _start, %function
  9. _start:
  10. bx r0
  11. bx r15
  12. .size _start, .-_start
  13. # Align this to 256-byte boundary for easier address matching.
  14. .align 8