-
Notifications
You must be signed in to change notification settings - Fork 5
pzbcm_delay
Taichi Ishitani edited this page Dec 26, 2022
·
3 revisions
https://github.com/pezy-computing/pzbcm/tree/master/pzbcm_delay
This module delays the input data.
name | type/width | default value |
---|---|---|
DELAY | int | 1 |
WIDTH | int | 1 |
TYPE | type | logic[WIDTH-1:0] |
INITIAL_VALUE | TYPE | TYPE'(0) |
- DELAY
- Specify how many clock cycles the input data is delayed.
- WIDTH/TYPE
- Width/Type of the input/output data
- INITIAL_VALUE
- Initial value of the output data
name | direction | type/width | note |
---|---|---|---|
i_clk | input | 1 | clock |
i_rst_n | input | 1 | reset (async/low active) |
i_d | input | TYPE | input data |
o_d | output | TYPE | delayed output data |