0
1.5kviews
Explain scheme for multiplication of $ 101\ast 010$

Subject: Basic VLSI Design

Topic: Data Path Design

Difficulty: Medium

1 Answer
0
36views

a = a2 a1 a0 = 101
b = b2 b1 b0 = 010

Array multiplier calculates the product (a2 a1 a0) x bi

Product terms are

P0 = a0b0 = 0

P1 = a0b1 + a1b0 = 0 +1 =1

P2 = a0b2 + a1b1 + a2b0 = 0 …

Create a free account to keep reading this post.

and 3 others joined a min ago.

Please log in to add an answer.