relbrlt.s 404 B

12345678910111213141516171819202122232425262728293031323334353637
  1. .text
  2. .global _start
  3. _start:
  4. 1:
  5. bl far
  6. nop
  7. bl far2far
  8. nop
  9. bl huge
  10. nop
  11. .long 0
  12. b 1b
  13. .space 0x1bf0000
  14. .section .text.pad1,"ax"
  15. .space 0x1bf0000
  16. .section .text.far,"ax"
  17. .globl far
  18. far:
  19. blr
  20. .section .text.pad2,"ax"
  21. .space 0x40fff0
  22. .section .text.far2far,"ax"
  23. .globl far2far
  24. far2far:
  25. blr
  26. .section .text.pad3,"ax"
  27. .space 0x1bf0000
  28. .section .text.huge,"ax"
  29. .globl huge
  30. huge:
  31. blr