cv-frontend-vue
cv-frontend-vue copied to clipboard
Feat: FIFO Queue Component
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), andRST(reset) control signals. - Operates on the rising edge of a
CLKinput. - 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.