Skip to content
Snippets Groups Projects
Commit 64940bc9 authored by NamNguyen's avatar NamNguyen
Browse files

add design text

parent 5a5a0646
No related branches found
No related tags found
1 merge request!2merge the process engine
module exact_mult (
input logic signed [ 7:0] i_a,
input logic signed [ 7:0] i_b,
output logic signed [15:0] o_z
);
always_comb begin
o_z = i_a * i_b;
end
endmodule : exact_mult
Design for the booth multiplier a and b
1. add 0 to the end of b
2. divide b into 3 groups
3. calculate the partial products according to the groups
4. exchange the least 5 column with 1
5. add all the partial product together
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment