My favorites | Sign in
Logo
                
Search
for
Updated Nov 19, 2008 by kylanr
Labels: Featured
MultiplierAlgorithms  
Algorithms for the dynamic creation of multipliers.

Assumptions

Unsigned Multipliers

Create a square array of cells:

a[n/m][n/m]

Assign functions to each cell:

for(i = 0, i < n/m, i++)
  for(j = 0, j < n/m, j++)
    a[i][j] = A                       //all cells are of type A
  end
end

Two's Complement Multipliers

Create a square array of cells:

a[n/m][n/m]

Assign functions to each cell:


Sign in to add a comment
Hosted by Google Code