GCD calculator for 2 8 bit integers
0 Stars     3 Views    

Author: KISHAN PATEL

Project access type: Public

Description:

Task 2: GCD Calculator for Two 8-Bit Integers

Create a sequential circuit to compute the GCD of two 8-bit integers, A and B, using the Euclidean algorithm.

Specifications:

  1. Inputs: Two 8-bit integers (A and B).
  2. Algorithm:
    • If A > B, update A to A - B.
    • If B > A, update B to B - A.
    • Repeat until A equals B, which is the GCD.
  3. FSM Design: Describe the finite state machine (FSM) controlling each step (comparison, subtraction, loop).

Created: 2 days ago

Updated: 2 days ago


Comments

You must login before you can post a comment.