nn-bit comparator

Design a circuit that compares two nn-bit numbers represented in binary code and indicates whether the first is greater than, equal to or smaller than the second.

The number of bits of the numbers must be a parameter of the module with a default value as shown in the specification.

Specification

module cmp(a, b, eq, gt, lt);
    parameter N=16;
    input [N-1:0] a, b;
    output eq, gt, lt;

Hint

Design a 1-bit comparator that receives the result of the comparison of the least-significant bits. Use nn instances of this circuit.

Input

Output

Problem information

Author: Jordi Cortadella

Generation: 2026-02-03T12:12:44.494Z

© Jutge.org, 2006–2026.
https://jutge.org