4-bit Devisor
2 Stars     2996 Views    

Author: Arthur Akhadov

Project access type: Public

Description:

Demonstration of a N x N divider with 4-bit numbers.

Description:
This project demonstrates a 4-bit divider capable of performing division on two 4-bit binary numbers. The circuit outputs both the quotient (Q) and the remainder (R) of the division. For instance, when dividing 14 by 3, the quotient will be 4 and the remainder (R) will be 2, as 14 = 3 * 4 + 2.

How It Works:
The divider operates by repeatedly subtracting the divisor from the dividend, shifting bits as necessary to align with binary division principles. The quotient is accumulated as the divisor is successfully subtracted from the dividend without the result going negative. The remainder (R) is what’s left of the dividend after the final subtraction, representing the "rest" of the division. This circuit is designed using a combination of adders and control logic to automate this process, illustrating fundamental digital division concepts.

Created: May 01, 2020

Updated: Aug 29, 2024


Comments

You must login before you can post a comment.

What Does R Stand For?
Posted on Oct 10 2023 at 10:08PM UTC.
+3
"R" stands for the "remainder" of the division. For example "14 / 3 = 4, 'remainder' = 2", because 3 * 4 = 12, and 12 + 'remainder' = 14. I updated the description to reflect that.
Posted on Aug 29 2024 at 10:33AM UTC.
+0