implib.s 358 B

12345678910111213141516171819202122232425
  1. .ifndef NO_GLOBAL
  2. .ifdef HPUX
  3. exported1 .comm 1
  4. .else
  5. .comm exported1,1
  6. .endif
  7. .data
  8. .global exported2
  9. .type exported2, %object
  10. .size exported2, 1
  11. exported2:
  12. .byte 21
  13. .endif
  14. .section ".bss", "aw", %nobits
  15. not_exported1:
  16. .space 1
  17. .size not_exported1, 1
  18. .data
  19. .type not_exported2, %object
  20. .size not_exported2, 1
  21. not_exported2:
  22. .byte 42