summaryrefslogtreecommitdiff
path: root/lib/alu.c
diff options
context:
space:
mode:
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);
}
}