1
0
Fork 0
forked from len0rd/rockbox

Moved to internal RAM

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1508 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Linus Nielsen Feltzing 2002-08-01 13:08:09 +00:00
parent 9d589401c1
commit ce2597550b
2 changed files with 12 additions and 0 deletions

View file

@ -49,6 +49,12 @@ QUICKREF
/* Threshhold for punting to the byte copier. */
#define TOO_SMALL(LEN) ((LEN) < BIGBLOCKSIZE)
_PTR
_DEFUN (memcpy, (dst0, src0, len0),
_PTR dst0 _AND
_CONST _PTR src0 _AND
size_t len0) __attribute__ ((section (".icode")));
_PTR
_DEFUN (memcpy, (dst0, src0, len0),
_PTR dst0 _AND

View file

@ -39,6 +39,12 @@ QUICKREF
#define UNALIGNED(X) ((long)X & (LBLOCKSIZE - 1))
#define TOO_SMALL(LEN) ((LEN) < LBLOCKSIZE)
_PTR
_DEFUN (memset, (m, c, n),
_PTR m _AND
int c _AND
size_t n) __attribute__ ((section (".icode")));
_PTR
_DEFUN (memset, (m, c, n),
_PTR m _AND