summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/powerpc/mcp750/console/consoleLib.S
blob: b18f018aeac88c4bc6062c7129d8b83f15403cb9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/*
 *  consoleLib.S  -- console I/O package utility functions.
 *
 *  Copyright (C) 1999 Eric Valette. valette@crf.canon.fr
 *
 *  The license and distribution terms for this file may be
 *  found in found in the file LICENSE in this distribution or at
 *  http://www.OARcorp.com/rtems/license.html.
 *
 * $Id$
 */

/* A few utility functions, some copied from arch/ppc/lib/string.S */

#include <libcpu/cpu.h>
#include <rtems/score/targopts.h>
#include "asm.h"
		
	.text
	
        .globl  strlen
	.type	strlen,@function
strlen:
        addi    r4,r3,-1
1:      lbzu    r0,1(r4)
        cmpwi   0,r0,0
        bne     1b
        subf    r3,r3,r4
        blr