aix-weak-2b.s 261 B

123456789101112131415161718192021
  1. .globl c1
  2. c1 = 0xdddd1111
  3. .weak c2
  4. c2 = 0xdddd2222
  5. .globl c3
  6. c3 = 0xdddd3333
  7. .weak c4
  8. c4 = 0xdddd4444
  9. .globl d1
  10. .csect d1[DS]
  11. d1:
  12. .long 0xeeee1111
  13. .weak d2
  14. d2 = 0xeeee2222
  15. .globl d3
  16. .csect d3[DS]
  17. d3:
  18. .long 0xeeee3333
  19. .weak d4
  20. d4 = 0xeeee4444