Question: Perform a division of two binary numbers (divide 0010 1011 by 0011 ) by creating a table to show steps taken, quotient register value, divisor
Perform a division of two binary numbers (divide 0010 1011 by 0011 ) by creating a table to show steps taken, quotient register value, divisor register value and remainder register value for each iteration by following the steps described in the following example. (Points will be deducted if steps are not shown.)

You can use this table to start:

Example: Divide 0000 0111 by 0010 Quotient Divisor Remainder Iterat Step ion 0010 0000 (sll to be 8 bit) (Dividend) 0010 0000 0010 0000 0001 0000 0001 0000 0001 0000 0000 1000 0000 1000 0000 1000 0000 0100 0000 0100 0000 0100 0000 0010 0000 0010 0000 0010 0000 0001 Initial value 0000 0111 1.Rem Rem-Div 2b. Rem-0, sll Q, Q0-1 3. srl Div 1. Rem-Rem-Div 2a. Rem>=0, sli Q, Q0-1 3. srl Div 0000 0111 0000 0111 2 0000 0111 0000 0111 0000 0111 0000 0111 0000 0011 0000 0011 0000 0011 0000 0001 0000 0001 0000 0001 4 0001 0001 0001 0011 0011 5
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
