123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- .global strcmp
- .set strcmp,__strcmp
- .text
- .global __strcmp
- .hidden __strcmp
- .type __strcmp,%function
- .align 4
- __strcmp:
- 1:
- ldrb r2, [r0], #1
- ldrb r3, [r1], #1
- cmp r2, #1
- cmpcs r2, r3
- beq 1b
- sub r0, r2, r3
- mov pc, lr
- .size __strcmp,.-__strcmp
- .weak strcoll
|