strcmp.S
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:1k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *  arch/s390/lib/strcmp.S
  3.  *    S390 strcmp routine
  4.  *
  5.  *  S390 version
  6.  *    Copyright (C) 1999 IBM Deutschland Entwicklung GmbH, IBM Corporation
  7.  *    Author(s): Martin Schwidefsky (schwidefsky@de.ibm.com),
  8.  */
  9. /*
  10.  * R2 = address of compare string
  11.  * R3 = address of test string
  12.  */
  13.         .globl   strcmp
  14. strcmp:
  15.         SR      0,0
  16.         SR      1,1
  17.         CLST    2,3
  18.         JO      .-4
  19.         JE      strcmp_equal
  20.         IC      0,0(3)
  21.         IC      1,0(2)
  22.         SR      1,0
  23. strcmp_equal:
  24.         LR      2,1
  25.         BR      14
  26.