cv-frontend-vue icon indicating copy to clipboard operation
cv-frontend-vue copied to clipboard

Feat: Comparator

Open Nihal4777 opened this issue 6 months ago • 1 comments

Comparators are components that compare two binary numbers and output whether one is greater than, less than, or equal to the other.

The Comparator component should:

  • Accept two multi-bit binary inputs: A and B.
  • Produce three binary outputs:
    • A > B (high if A is greater than B)
    • A < B (high if A is less than B)
    • A == B (high if A equals B)
  • Allow setting a configurable bit width

Nihal4777 avatar Jun 01 '25 17:06 Nihal4777