farcall-b-none-function.s 184 B

12345678910111213141516
  1. .global _start
  2. .global bar
  3. # We will place the section .text at 0x1000.
  4. .text
  5. _start:
  6. b bar
  7. ret
  8. # We will place the section .foo at 0x8001000.
  9. .section .foo, "xa"
  10. bar:
  11. ret