-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yaml --- r: 153994 b: refs/heads/master c: 7f2ff23 h: refs/heads/master v: v3
- Loading branch information
Jesper Nilsson
committed
Jun 10, 2009
1 parent
0fdd2ef
commit 6b8d370
Showing
4 changed files
with
29 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: b0903ee8e4853eea35cb24cfb4dda1b60c7948dc | ||
refs/heads/master: 7f2ff23db1de53ea8695bb4a7c1cfab88886e3fd |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
; strcmp.S -- CRISv32 version. | ||
; Copyright (C) 2008 AXIS Communications AB | ||
; Written by Edgar E. Iglesias | ||
; | ||
; This source code is licensed under the GNU General Public License, | ||
; Version 2. See the file COPYING for more details. | ||
|
||
.global strcmp | ||
.type strcmp,@function | ||
strcmp: | ||
1: | ||
move.b [$r10+], $r12 | ||
seq $r13 | ||
sub.b [$r11+], $r12 | ||
or.b $r12, $r13 | ||
beq 1b | ||
nop | ||
|
||
ret | ||
movs.b $r12, $r10 | ||
.size strcmp, . - strcmp |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters