repo.or.cz
/
mascara-docs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
* added 0.99 linux version
[mascara-docs.git]
/
i386
/
linux
/
linux-2.3.21
/
arch
/
ppc
/
math-emu
/
fmr.c
blob
1a4de69f71c8953a9a5b31d8ee408c3ac7fd284f
1
/* $Id: fmr.c,v 1.1 1999/08/23 18:59:40 cort Exp $
2
*/
3
4
#include <linux/types.h>
5
#include <linux/errno.h>
6
#include <asm/uaccess.h>
7
8
int
9
fmr
(
u32
*
frD
,
u32
*
frB
)
10
{
11
frD
[
0
] =
frB
[
0
];
12
frD
[
1
] =
frB
[
1
];
13
14
#ifdef DEBUG
15
printk
(
"%s: D %p, B %p: "
,
__FUNCTION__
,
frD
,
frB
);
16
dump_double
(
frD
);
17
printk
(
"
\n
"
);
18
#endif
19
20
return
0
;
21
}