bzero.S 479 B

123456789101112131415161718192021222324
  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. #include <features.h>
  9. #ifdef __UCLIBC_SUSV3_LEGACY__
  10. .text
  11. .global bzero
  12. .type bzero, @function
  13. .align 1
  14. bzero:
  15. mov r10, r11
  16. mov r11, 0
  17. rjmp HIDDEN_JUMPTARGET(memset)
  18. .size bzero, . - bzero
  19. #endif /* __UCLIBC_SUSV3_LEGACY__ */