Warning: Attempt to read property "date" on null in /usr/local/www/websvn.planix.org/blame.php on line 247

Warning: Attempt to read property "msg" on null in /usr/local/www/websvn.planix.org/blame.php on line 247
WebSVN – planix.SVN – Blame – /os/branches/feature_posix/sys/src/ape/lib/ap/386/strlen.s – Rev 2

Subversion Repositories planix.SVN

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
2 - 1
	TEXT	strlen(SB),$0
2
 
3
	MOVL	$0, AX
4
	MOVL	$-1, CX
5
	CLD
6
/*
7
 * look for end of string
8
 */
9
 
10
	MOVL	p+0(FP), DI
11
	REPN;	SCASB
12
 
13
	MOVL	DI, AX
14
	SUBL	p+0(FP), AX
15
	SUBL	$1, AX
16
	RET