summaryrefslogtreecommitdiff
path: root/lib/alu.c
diff options
context:
space:
mode:
authorPixel <>2001-04-16 17:09:32 +0000
committerPixel <>2001-04-16 17:09:32 +0000
commitd37b3b2214afdcad845958b8f4d2af1af57bf08b (patch)
treebeff0ea2b2d2894f2d94f80a117c38a1fef794b8 /lib/alu.c
parentd27f5513775730b3e8581fe06400c6122161a19a (diff)
Prout
Diffstat (limited to 'lib/alu.c')
-rw-r--r--lib/alu.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/alu.c b/lib/alu.c
index 5a2819a..e90b0cc 100644
--- a/lib/alu.c
+++ b/lib/alu.c
@@ -746,9 +746,9 @@ Uint32 DivisionSigne(Uint32 a, Uint32 b)
Uint32 AND(Uint32 a, Uint32 b)
{
if (Rapide) {
- return RANDSigne(a, b);
+ return RAND(a, b);
} else {
- return NANDSigne(a, b);
+ return NAND(a, b);
}
}