bzero.S 503 B

12345678910111213141516171819202122
  1. /*
  2. * Copyright (C) 2004-2007 Atmel Corporation
  3. *
  4. * This file is subject to the terms and conditions of the GNU Lesser General
  5. * Public License. See the file "COPYING.LIB" in the main directory of this
  6. * archive for more details.
  7. */
  8. #ifdef __UCLIBC_SUSV3_LEGACY__
  9. .text
  10. .global bzero
  11. .type bzero, @function
  12. .align 1
  13. bzero:
  14. mov r10, r11
  15. mov r11, 0
  16. rjmp __memset
  17. .size bzero, . - bzero
  18. #endif /* __UCLIBC_SUSV3_LEGACY__ */