crt0.S 395 B

1234567891011121314151617
  1. /* This file is lisenced under LGPL
  2. * Copyright (C) 2002-2003, George Thanos <george.thanos@gdt.gr>
  3. * Yannis Mitsos <yannis.mitsos@gdt.gr>
  4. */
  5. .global __start
  6. __start:
  7. call L1, 0, __uClibc_start
  8. /* Define a symbol for the first piece of initialized data. */
  9. .data
  10. .globl __data_start
  11. __data_start:
  12. .long 0
  13. .weak data_start
  14. data_start = __data_start