Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
linux
Commits
c9b005f0
Commit
c9b005f0
authored
Jun 08, 2003
by
Richard Henderson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[ALPHA] Implement bcopy.
parent
0a1b9a13
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
0 deletions
+10
-0
arch/alpha/lib/memmove.S
arch/alpha/lib/memmove.S
+9
-0
include/asm-alpha/string.h
include/asm-alpha/string.h
+1
-0
No files found.
arch/alpha/lib/memmove.S
View file @
c9b005f0
...
...
@@ -11,6 +11,15 @@
.
set
noreorder
.
text
.
align
4
.
globl
bcopy
.
ent
bcopy
bcopy
:
mov
$
16
,
$
0
mov
$
17
,
$
16
mov
$
0
,
$
17
.
end
bcopy
.
align
4
.
globl
memmove
.
ent
memmove
...
...
include/asm-alpha/string.h
View file @
c9b005f0
...
...
@@ -13,6 +13,7 @@
#define __HAVE_ARCH_MEMCPY
extern
void
*
memcpy
(
void
*
,
const
void
*
,
size_t
);
#define __HAVE_ARCH_MEMMOVE
#define __HAVE_ARCH_BCOPY
extern
void
*
memmove
(
void
*
,
const
void
*
,
size_t
);
/* For backward compatibility with modules. Unused otherwise. */
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment