abs.S 238 B

12345678910111213141516171819202122
  1. ;;; abs.S
  2. #include <asm/linkage.h>
  3. #if defined(__H8300H__)
  4. .h8300h
  5. #endif
  6. #if defined(__H8300S__)
  7. .h8300s
  8. #endif
  9. .text
  10. .global SYMBOL_NAME(abs)
  11. ;;; int abs(int n)
  12. SYMBOL_NAME_LABEL(abs)
  13. mov.l er0,er0
  14. bpl 1f
  15. neg.l er0
  16. 1:
  17. rts