diff options
author | Jonathan <jonathan@jonathan-VirtualBox.(none)> | 2014-01-09 18:10:54 +0100 |
---|---|---|
committer | Jonathan <jonathan@jonathan-VirtualBox.(none)> | 2014-01-09 18:10:54 +0100 |
commit | 2595e3881e0904fc6ecb162775a149f5b0121848 (patch) | |
tree | 63d33d173e7bb047922321d79cc779f17ca5ac10 /cpu/alu.ml | |
parent | 438b8e30bd7d4e186554a899d9fc86fc4bc65a9e (diff) | |
download | SystDigit-Projet-2595e3881e0904fc6ecb162775a149f5b0121848.tar.gz SystDigit-Projet-2595e3881e0904fc6ecb162775a149f5b0121848.zip |
restored the functionnal version of mul
Diffstat (limited to 'cpu/alu.ml')
-rw-r--r-- | cpu/alu.ml | 19 |
1 files changed, 2 insertions, 17 deletions
@@ -120,7 +120,6 @@ let rec split_list = function | x::y::tl -> let a, b = split_list tl in x::a, y::b (* n must be a power of two *) -(* let nmul n a b = let summands = List.map (fun i -> @@ -137,23 +136,9 @@ let nmul n a b = let s1, s2 = split_list l in nadder (2*n) (sum_list s1) (sum_list s2) - in let r = List.fold_left (nadder (2*n)) (List.hd summands) (List.tl summands) in - - - (*in - let r = sum_list summands in*) + in + let r = sum_list summands in (r % (0, n-1)), (r % (n, 2*n - 1)) - *) - -let nmul n a b = - let nn = 2*n in - let result = ref (zeroes (nn)) in - for i = 0 to n-1 do - result := mux (b ** i) !result (nadder nn !result ((zeroes i) ++ a ++ (zeroes (n-i)))) - done; - let r = !result in - r % (0, n-1), r % (n, nn-1) - |