diff options
author | Pixel <> | 2001-04-16 17:09:32 +0000 |
---|---|---|
committer | Pixel <> | 2001-04-16 17:09:32 +0000 |
commit | d37b3b2214afdcad845958b8f4d2af1af57bf08b (patch) | |
tree | beff0ea2b2d2894f2d94f80a117c38a1fef794b8 /lib/alu.c | |
parent | d27f5513775730b3e8581fe06400c6122161a19a (diff) |
Prout
Diffstat (limited to 'lib/alu.c')
-rw-r--r-- | lib/alu.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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); } } |