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

Feat: FIFO Queue Component

Open Nihal4777 opened this issue 4 months ago • 0 comments

The component implements a First-In-First-Out (FIFO) logic queue that can enqueue and dequeue bit-width-limited values on clock edges.

Characteristics:

  • Supports ENQ (enqueue), DEQ (dequeue), and RST (reset) control signals.
  • Operates on the rising edge of a CLK input.
  • Maintains an internal buffer of configurable depth.
  • Outputs:
    • Q: the value dequeued (only updates on DEQ).
    • EMP: High if the queue is empty.
    • FULL: High if the queue is full.

Nihal4777 avatar Aug 02 '25 11:08 Nihal4777